$(document).ready(function(){
 
	$(".links").mouseover(function(){

		$(this).css("background-color", "#F59E48");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#F59E48"})
	});
  
	$(".links").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#F59E48");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  


	$(".festivals").mouseover(function(){

		$(this).css("background-color", "#FFFFFF");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#FFFFFF"})
	});
  
	$(".festivals").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#FFFFFF");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  

	$(".presse").mouseover(function(){

		$(this).css("background-color", "#11BCB7");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#11BCB7"})
	});
  
	$(".presse").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#11BCB7");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  

	$(".inhalt").mouseover(function(){

		$(this).css("background-color", "#FFFFFF");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#FFFFFF"})
	});
  
	$(".inhalt").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#FFFFFF");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  

	$(".bilder").mouseover(function(){

		$(this).css("background-color", "#FFD677");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#FFD677"})
	});
  
	$(".bilder").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#FFD677");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  

	$(".kontakt").mouseover(function(){

		$(this).css("background-color", "#EC7F50");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#EC7F50"})
	});
  
	$(".kontakt").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#EC7F50");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  

	$(".dvd").mouseover(function(){

		$(this).css("background-color", "#74BAA6");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#74BAA6"})
	});
  
	$(".dvd").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#74BAA6");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  	

	$(".macher").mouseover(function(){

		$(this).css("background-color", "#B31608");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#B31608"})
	});
  
	$(".macher").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#B31608");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	});  	

	$(".impressum").mouseover(function(){

		$(this).css("background-color", "#59B29A");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#59B29A"})
	});
  
	$(".impressum").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#59B29A");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	}); 

	$(".trailer").mouseover(function(){

		$(this).css("background-color", "#188949");
		$(this).css("color", "#000000");
		$(this).css("opacity", "0.6");
		$(this).dropShadow({left: 0, top: 0, blur: 4, opacity:1, color: "#188949"})
	});
  
	$(".trailer").mouseout(function(){
		$(this).css("background-color", "");
		$(this).css("color", "#188949");
		$(this).css("opacity", "1");
		$(this).removeShadow();      
	}); 
	
});


