$(document).ready(function(){
		
// ------ table ------ //

// --: hover 

$("table.hover tr").mouseover(function (){
	$(this).addClass("mouseover");
});

$("table.hover tr").mouseout(function (){
	$(this).removeClass("mouseover");
});


// --: zebra 

$("table tr:nth-child(even)").addClass("odd");


// --: border

$("table tr:last-child").addClass("last");

$("table tr td:last-child").addClass("leftest-column");

$("table tr:first-child th:first-child").addClass("first");

					
}); // end document ready.
