//ALPHAS EN IMÁGENES

$(document).ready(function(){  
$(".imagenFade").fadeTo("slow", 0.7);  
$(".imagenFade").hover(function(){  
$(this).fadeTo("fast", 1);  
},function(){  
$(this).fadeTo("fast", 0.7);  
});  
});


$(document).ready(function(){  
$(".imagenFade02").fadeTo("slow", 1);  
$(".imagenFade02").hover(function(){  
$(this).fadeTo("fast", 0.7);  
},function(){  
$(this).fadeTo("fast", 1);  
});  
});