/* ----------------------------------------------------------
	title		  : GD Framework
	created		  : 10/21/08
	last updated  : 10/21/08
	history		  :
---------------------------------------------------------- */
jQuery.noConflict();     
jQuery(document).ready(function($){



/* Zebra tables
---------------------------------------------------------- */
function zebraTable() {
$(".zebra tbody tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".zebra tbody tr:even").addClass("alt");
}

zebraTable();



});//end doc ready