$(document).ready(function(){ 
	//Sitespecific javascript here
	if(typeof(page) == 'undefined')
	{	/* if Environment is NOT Editor */
		$("table tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
		$("table tr:even").addClass("even");
		$("table tr:odd").addClass("odd");
		var th = $("table tr").get(0);
		//$(th).removeClass('even')
		$(th).addClass("th");
	}
	
});