$(document).ready(function() {
	// this sets the backgrounds for grid
	$('.grid .grid-row:odd').css("background-color", "#EEEEEE");
	$('.grid .grid-row:even').css("background-color", "#FFFFFF");

	// this will set the hovering
	$(".grid .grid-row").hover(
		function () { $(this).find('td').css("background-color", "#FCF5DD"); }, 
		function () { $(this).find('td').css("background-color", ""); }
	);
});

function Grid(){
   // constructor function
}

Grid.selectAll = function() {
	$('.gridCheckboxes').attr('checked','checked');
}

Grid.unselectAll = function() {
	$('.gridCheckboxes').removeAttr('checked');
}


	
