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