$(document).ready(function()
{ 
     /* $('#animation').cycle({ 
    fx:    'fade', 
    speed:  2500 
 });
$(".pics_neu").accordion({
			event: "mouseover",
			 animated: 'bounceslide'
		});*/


 
	$("#head_1").mouseover(function(){
     $("#head_2_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_1_text").fadeIn("slow");
    }).mouseout(function(){
       $("#head_2_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_1_text").hide;
    });

	
	$("#head_2").mouseover(function(){
     $("#head_1_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_2_text").fadeIn("slow");
    }).mouseout(function(){
       $("#head_2_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_1_text").hide;
    });
	
	$("#head_3").mouseover(function(){
     $("#head_1_text").hide();
	 $("#head_2_text").hide();
	 $("#head_4_text").hide();
     $("#head_3_text").fadeIn("slow");
    }).mouseout(function(){
       $("#head_2_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_1_text").hide;
    });
	
	$("#head_4").mouseover(function(){
     $("#head_1_text").hide();
	 $("#head_3_text").hide();
	 $("#head_2_text").hide();
     $("#head_4_text").fadeIn("slow");
    }).mouseout(function(){
       $("#head_2_text").hide();
	 $("#head_3_text").hide();
	 $("#head_4_text").hide();
     $("#head_1_text").hide;
    });
	

 
 
 
 

 
});