/* ------------------------------------------------------------
 * PROJECT        : FHSC Interface Standard
 * FILENAME       : jqdatatable.js
 * ------------------------------------------------------------
 * DATE CREATED   : 12 Nov 2007
 * LAST UPDATED   : 12 Nov 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl  (KSScholl@cvty.com)
 *                : Barbi Sanders (BRSanders@cvty.com)
 * ------------------------------------------------------------ */

$(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"); }
			);
		});
	
	$("input[type='text'], input[type='textarea'], input[type='select']").css("border","1px solid #7F9DB9");
		
	}); // end ready function