$(function() {
    $(".home").css("opacity","0.5");

	     
  
 // mouse over funktion  home_01
  $(".home").hover(function () { 
  
  
 $(this).stop().animate({
 opacity: 1.0
 }, "slow");
 
 
 },
 
     // mouse out funktion
 function () { 
 $(this).stop().animate({
     opacity: 0.5
 }, "slow");

 
    });
});





