$(document).ready(function() {
    $('.CheckerTD tr:nth-child(odd) td:nth-child(odd)').addClass('TblCellOdd');
	$('.CheckerTD tr:nth-child(odd) td:nth-child(even)').addClass('TblCellEven');
	$('.CheckerTD tr:nth-child(even) td:nth-child(odd)').addClass('TblCellEven');
	$('.CheckerTD tr:nth-child(even) td:nth-child(even)').addClass('TblCellOdd');	
	
	

	
// call the jQuery Hover Over and Out on #CheckerTD table's <td> elements
    $('.CheckerTD td').hover(over, out);
	
// Tell the browser to change the class associated with the td - and change the curser to a pointer when hovering over a <td> element
    function over(event) {
        $(this).addClass('TblCellOver');
		$(this).css('cursor', 'auto');
		$(this).css('color','#bc1a1e');
    }
	
// Tell the browser to the class associated with the td when mouse is outside of the <td> element
    function out(event) {
        $(this).removeClass('TblCellOver');
		$(this).css('color','#000000');
	}
});
