//nav
$(document).ready(function(){
	$("#nav_876394 li a").wrapInner("<span></span>");
	$("#nav_876406 li a").wrapInner("<span></span>");
	jQuery("#nav_876394 li").hover(
	function() {
	// mousehover
    jQuery(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        jQuery(this).children("ul").hide();
    });
	jQuery("#nav_876394 li ul li").hover(
	function() {
	// mousehover
    jQuery(this).children("ul").show();
    }, 
      function () {
	  // mouseout
        jQuery(this).children("ul").hide();
    });
});
  
//tables
$(document).ready(function(){
	$('table.EventSchedule tr:even').css({'background': '#ED1C24 url(/admin/images/redbar.jpg) 0 36%', 'color': '#fff'});
	$('table.EventSchedule tr:odd').css({'background': '#E7E7E7 url(/admin/images/whitebar.jpg) 0 36%', 'color': '#000'});
	$('table.EventSchedule tr:even td').css({'background': 'none', 'color': '#fff'});
	$('table.EventSchedule tr:odd td').css({'background': 'none', 'color': '#000'});
	//$('table.EventSchedule tr:first').css({'background': 'none'});
});
						   







