$(document).ready(function(){
	if(typeof(page) == 'undefined')
	{	/* if Environment is NOT Editor */
		$(".pristabell tr").mouseover(function() 
		{
			$(this).addClass("over");
		}).mouseout(function() 
		{
			$(this).removeClass("over");
		});
		$(".pristabell tr:even").addClass("even");
		$(".pristabell tr:odd").addClass("odd");

		$(".pristabell").each(function(i)
		{
			var th = $(this).find("tr");
			th = th.get(0)
			$(th).removeClass('odd')
			$(th).removeClass('even')
			$(th).addClass("th");
		});
	}
});
