// JavaScript Document

$(document).ready(function(){
//DOM is ready - lets go!

//Hover function
$(".tableStyle tr").hover(function() {
	//On mouse over apply the class to the item (this = itself)
	$(this).addClass("highlight");
	
},function(){
	//On mouse out remove the class we have added on the mouse over
	$(this).removeClass("highlight");
});

//Select the even tr elements within the "TableStripe" ID and add the class "even"
$(".tableStyle tr:even").addClass("even");		
});
