/* ======================================================= *
 * TITLE   : NBuy               | jqdatatable.js           *
 * AUTHOR  : Kevin Scholl       | kscholl@comast.net       *
 * CREATED : 22 Jan 2007        | UPDATED: 03 Feb 2007     *
 * ======================================================= */

/* ======================================================= *
 * JQUERY PSEUDO-ONLOAD
 * ======================================================= */

$(document).ready(function(){
	// Table Striping and Row Hover
	$("table.dataTable tbody").each(function(){
		$("tr:nth-child(odd)").addClass("alt");
		$("tr:last-child").addClass("lastRow");
		$("tr").hover(
		  function() {$(this).addClass("over"); },
			function() {$(this).removeClass("over"); }
			);
		});
	
	}); // end ready function