$(document).ready(function(){
$(".images").stop().fadeTo("slow", 0.3);
$(".images").hover(function(){
$(this).stop().fadeTo("slow", 1.0);
},function(){
$(this).stop().fadeTo("slow", 0.3);
});
});
