// JavaScript Document
	// initialise plugins
		jQuery(document).ready(function($)  { 
        $('ul.sf-menu').superfish({ 
            delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'normal',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
    }); 
		
		jQuery(document).ready(function($)  {
  $(".schedule ul li ul").hide();
  $('.schedule ul>li').click(function() {
    $(this).children('ul').slideToggle(200); //Hides if shown, shows if hidden
  }).mouseover(function(){ $(this).addClass("sched-hover") }); //Hand!
});

