$(document).ready(function(){
	$("img.thumbnail").mouseover(function(){$(this).stop(true, true).fadeTo("fast", 1)});
	$("img.thumbnail").mouseout(function(){$(this).stop(true, true).fadeTo("fast", .7)});
});	

