	
    
    
    /*
	Global Functions for www.cocon-day-spa.net
    jQuery Stuff
	*/
    
    $(document).ready(function(){
  	
	/*
	Set Background via Cookies
	*/

	 var bgcolor = $.cookie("cocondayspa");
	
	
	if (bgcolor == "switch1") 
	{
		//$("body").animate({ backgroundColor: "#dcdad1"},1);
		$("body").css('background-color','#dcdad1')
		$("#FooterLinksLeft ul li a").css('color','#898989')
		$('#FooterLinksRight #switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige_Active.png)" });
		$('#FooterLinksRight #switch1').css({ backgroundPosition: "0px 0px" });
		$('#FooterLinksRight #switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue.png)" });
		$('#FooterLinksRight #switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White.png)" });
	}
	

	if (bgcolor == "switch2") 
	{
		//$("body").animate({ backgroundColor: "#1bc1df"},1000);
		$("body").css('background-color','#cff2f8')
		$("#FooterLinksLeft ul li a").css('color','#0a9ab4')
		$('#FooterLinksRight #switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue_Active.png)" });
		$('#FooterLinksRight #switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige.png)" });
		$('#FooterLinksRight #switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White.png)" });
	}


	if (bgcolor == "switch3") 
	{
		//$("body").animate({ backgroundColor: "#FFFFFF"},1000);
		$("body").css('background-color','#FFFFFF')
		$("#FooterLinksLeft ul li a").css('color','#898989')
		$('#FooterLinksRight #switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White_Active.png)" });
		$('#FooterLinksRight #switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue.png)" });
		$('#FooterLinksRight #switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige.png)" });
	
	}

	
	
	/*
	Fade Animation Functions
	*/
  	
  
	$("#switch1").click(function () {
    	$("body").animate({ backgroundColor: "#dcdad1"},1500);
		$("#FooterLinksLeft ul li a").animate({ color: "#898989"},1500);
		$('#FooterLinksRight a#switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige_Active.png)" });
		$('#FooterLinksRight a#switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue.png)" });
		$('#FooterLinksRight a#switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White.png)" });
		$.cookie("cocondayspa", "switch1");
		//alert($.cookie("cocondayspa"));
      
    });
	
	
	$("#switch2").click(function () {
    	$("body").animate({ backgroundColor: "#cff2f8"},1500);
		$("#FooterLinksLeft ul li a").animate({ color: "#0a9ab4"},1500);
		$('#FooterLinksRight a#switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue_Active.png)" });
		$('#FooterLinksRight a#switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige.png)" });
		$('#FooterLinksRight a#switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White.png)" });
		$.cookie("cocondayspa", "switch2");
		//alert($.cookie("cocondayspa"));
      
    });
	
	
	$("#switch3").click(function () { 
    	$("body").animate({ backgroundColor: "#FFFFFF"},1500);
		$("#FooterLinksLeft ul li a").animate({ color: "#898989"},1500);
		$('#FooterLinksRight a#switch3').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_White_Active.png)" });
		$('#FooterLinksRight a#switch2').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Blue.png)" });
		$('#FooterLinksRight a#switch1').css({ backgroundImage : "url(/fileadmin/02_Templates/Global_Images/Circle_Beige.png)" });
		$.cookie("cocondayspa", "switch3");
		//alert($.cookie("cocondayspa"));
   	});

	$('#Gutschein').FormValidate({
		phpFile:"fileadmin/02_Templates/Includes/inc_php/Gutschein_Formular/send.php",
		ajax:true,
		validCheck: false
	});
	


	

  });