$(document).ready(function(){

$(".thumbs img").hover(function(){
$(this).stop().fadeTo("fast", 0.4); // This should set the opacity to 40% on hover
},function(){
$(this).stop().fadeTo("slow", 1.0); // This should set the opacity back to 100% on mouseout
});
});









