/* ==================================================== *
 * TITLE   : Miracle League  | jqdatatable.js           *
 * AUTHOR  : Kevin Scholl    | kscholl@comcast.net      *
 * CREATED : 19 Feb 2007     | UPDATED: 19 Feb 2007     *
 * ==================================================== */

/* ==================================================== *
 * JQUERY PSEUDO-ONLOAD
 * ==================================================== */

$(document).ready(function(){
	// Table Striping and Row Hover
	$("table.dataTable tbody").each(function(){
		$("tr:nth-child(even)").addClass("alt");
		$("tr:last-child").addClass("lastRow");
		$("tr").hover(
		  function() {$(this).addClass("over"); },
			function() {$(this).removeClass("over"); }
			);
		});
	
	}); // end ready function