$(document).ready(function() {
	$('.homePageGridCellEntry').each(function(index) {
		$(this).mouseover(function() {
			//fade out cell
			$(this).stop(true, false).animate({opacity: 0.5}, 500, function() {/*Animation complete.*/});
		});
		
		$(this).mouseout(function() {
			//fade in cell
			$(this).stop(true, false).animate({opacity: 1.0}, 500, function() {/*Animation complete.*/});
		});
	});
});
