// JavaScript Document
$(function(){
	$(".stripe tr:nth-child(odd)").addClass("odd");
	$(".stripe tr:nth-child(even)").addClass("even");
	
	$(".stripe tr").mouseover(function(){
		$(this).addClass("over");								   
	}).mouseout(function(){
		$(this).removeClass("over");	
	});
});