$(document).ready(function(){
	$(function() {
		$("#grid-content div.thumb-wrap").css("backgroundColor","#FFFFFF");
		
		$("#grid-content div.thumb-wrap").hover(
		function () {
		$(this).stop().animate({backgroundColor: '#F0F0F0'}, 'slow');},
		
		function () {
		$(this).stop().animate({backgroundColor: '#FFFFFF'}, 'slow');}
		);
	});
});
