$(document).ready(function(){
	the_url = window.location.href;
	the_section = the_url.substr(the_url.indexOf("#")+1);

	if($('body.home').length != "1" ){$("body").css('background-color','#fff2e1');}
	else{$("body").css('background-color','#F57E24');};
	
	//Öffnet die richtige Box bei übergebenem Anchor
	$('div.'+the_section).removeClass('closed').addClass('open');
	
	$('div.closed').live('click',
		function() 
		{
			
			window.location.href = '#' + $(this).attr("rel");
			$('div.open').animate
			(
				{
					"width": 30
				}
			);
			
			$(this).animate
			(
				{
					"width": 665
				}
			);		
			
			$('div.open').removeClass('open').addClass('closed');
			
			$('div.closed > div.inner').css('display', 'none');
		
			$(this).removeClass("closed").addClass("open");
			
			$('div.open > div.inner').css('display', 'block');
					
		}
	);
	
	/* COLORBOX PART */
	//als Person
	$("a[rel='s_psychotherapie']").colorbox({inline:true, href:"#s_psychotherapie"});
	$("a[rel='s_persoenlichkeit']").colorbox({inline:true, href:"#s_persoenlichkeit"});
	$("a[rel='s_bewegung']").colorbox({inline:true, href:"#s_bewegung"});
	
	
	//im Beruf
	$("a[rel='s_coaching']").colorbox({inline:true, href:"#s_coaching"});
	$("a[rel='s_supervision']").colorbox({inline:true, href:"#s_supervision"});
	$("a[rel='s_teamentwicklung']").colorbox({inline:true, href:"#s_teamentwicklung"});
	$("a[rel='s_reteaming']").colorbox({inline:true, href:"#s_reteaming"});
	$("a[rel='s_teamrolle']").colorbox({inline:true, href:"#s_teamrolle"});
	$("a[rel='s_esci']").colorbox({inline:true, href:"#s_esci"});
	$("a[rel='s_thework']").colorbox({inline:true, href:"#s_thework"});
	$("a[rel='s_moveandmore']").colorbox({inline:true, href:"#s_moveandmore"});
	
	//Kontakt
	$("a[rel='praxis']").colorbox();
	$("a[rel='s_links']").colorbox({inline:true, href:"#s_links"});
	
});
