function hover_object () {
	// Adds hilite CSS class on hover
	$(".hoverObject").hover(function () { 
		  $(this).addClass("hilite");
			$(this).removeClass("hoverObject");
			}, function () {
			  $(this).removeClass("hilite");
			$(this).addClass("hoverObject");
			 
		});
}

$(document).ready(function(){
	
	hover_object()
 });