//ALPHAS EN IMÁGENES

$(document).ready(function(){  
$(".imagenFade").fadeTo("slow", 1);  
$(".imagenFade").hover(function(){  
$(this).fadeTo("fast", 0.4);  
},function(){  
$(this).fadeTo("fast", 1);  
});  
});