$(function()
{
	$('.row-hover tr').not('.header').hover
	(
		function()
		{
			$(this).addClass('hover');
		},
		function()
		{
			$(this).removeClass('hover');
		}
	);
	/*$('.cell-hover td').hover
	(
		function()
		{
			$(this).addClass('hover');
		},
		function()
		{
			$(this).removeClass('hover');
		}
	);*/
});
