$(document).ready(function() {

	$('table tr').hover(
		function() { removeHoverEvents(); if(!$(this).hasClass('HeaderRow')) $(this).children('td').addClass('tableHoverState'); },
		function() { removeHoverEvents(); });

});

function removeHoverEvents() {
	$('.tableHoverState').each(function() {
		$(this).removeClass('tableHoverState');
	});
}
