$(document).ready(function() {
	$('.fancyRow')
		.css('background-color', '#f9f9f9')
		.hover(
			function() { $(this).css('background-color', '#F0F0F0') }, 
			function() { $(this).css('background-color', '#f9f9f9'); }
		);
});
