$(document).ready(function(){


	$(".thumb").css("opacity","0.7");

	
	$(".thumb").hover(function(){
	$(this).fadeTo(200, 1.0); // This sets the opacity to 100% on hover
	},function(){
	$(this).fadeTo(400, 0.7); // This sets the opacity back to 70% on mouseout
	});
});