$(document).ready(function(){
$(".thumbs img").fadeTo("slow", 1);

$(".thumbs img").hover(function(){
$(this).fadeTo("fast", 0.80);
	},function(){
		$(this).fadeTo("slow", 1);
	});
});
