$(document).ready(function(){  
$(".text").fadeTo(2500, 0.8);  
$(".text").hover(function(){  
$(this).fadeTo("slow", 1.0);  
},function(){  
$(this).fadeTo("slow", 0.8);  
});  
}); 
