$(document).ready(function(){
	$(".grid_row").hover(
		function () {
			$(this).css('background-color', '#EAEAEA');
		}, 
		function () {
			$(this).css('background-color', '#FFFFFF');
		}
	);
	
});
