$(document).ready(function() {
	// Leistungen-Auswahl-Gateway
	
	
	$('#country').change(function(){
		//$('#link_default').hide();
		//$('#link_default2').hide();
		$('#country_contents').children().hide();


		$('#' + $('#country').val()).show();
		

		/*if ($('#country').val() == 'default')
		{ 
			$('#Deutschland').show();

	
		}*/
		

	});

	// Leistungen-Auswahl-Cluster
	$('#leistungen').change(function(){
		$('#sports').children().hide();
		$('#' + $('#leistungen').val()).show();
	});

	// Leistungen-Auswahl-Objekt
	$('#kontakt').change(function(){
		$('#ansprechpartner').show();
		$('#region_sued').children().hide();
		$('#' + $('#kontakt').val()).show();

		if($('#kontakt').val() == 'default'){
			$('#ansprechpartner').hide();
			$('.content_fillin .inner_contact_partner').hide();
		}

	});		

	$('#ansprechpartner').change(function(){


		$('.inner_contact_partner .inner_text').hide();
		$('.content_fillin .inner_contact_partner').show();

		$('#' + $('#ansprechpartner').val()).children().show();
		if($('#ansprechpartner').val() == 'default'){
			$('.content_fillin .inner_contact_partner').hide();
		}
	});

if(typeof($( ".accordion" ).accordion) == 'function'){

	//Accordion
	$( ".accordion" ).accordion({
		autoHeight: false,
		clearStyle: true,
		active: false,
		collapsible: true,
		header: "h4",
		alwaysOpen: false
	})


	//Accordion zweispaltig
	$( "#accordion-2" ).accordion({
		autoHeight: false,
		clearStyle: true,
		active: false,
		collapsible: true,
		header: "h4",
		alwaysOpen: false
	})
}

});
