$(document).ready(function(){
  // Dropdown nav  
  $('#nav-main ul').superfish({ 
        delay:       1000,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'fast',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });
/*
  $("h3.wait-time:contains('Mins')").each(function(){
      $(this).html($(this).html().replace(/Mins/, "<span>Minutes</span>"));
    });
*/
  $("#crumb-trail ul li:last-child").truncate( 60 );
  
  // Adds and removes search text
  $('#header #site-search input[type="text"]').addClass('watermark');
  $('#header #site-search input[type="text"]').focus(function(){
    $(this).filter(function(){
      return $(this).val() === '' || $(this).val() === 'Search';
  }).removeClass('watermark').addClass('text').val('');
  }).blur(function(){
    $(this).filter(function(){
      return $(this).val() === '';
  }).removeClass('text').addClass('watermark').val('Search');
  });
 
  
  // Cycle the home tabs
  $('#promo-tabs-container') 
  .after('<ul id="promo-tabs-selectors">') 
  .cycle({ 
    cleartype:  1, 
    timeout: 8000, 
    effect: 'fade',
    speed: 500,
    pause: true,
    pager:  '#promo-tabs-selectors',
    pagerEvent:   'click',
      pagerAnchorBuilder: function(idx, slide) { 
          return '<li class="' + jQuery(slide).attr("id") + ' "><a href="#"><span class="wrap">' + jQuery(slide).find("div.tab-text").html() + '</span><span class="extra"></span></a></li>'; 
      }
  });
  $('#promo ul').hover(function(){
    $('#promo-tabs-container').cycle("pause");
  }, function(){
    $('#promo-tabs-container').cycle("resume");
  });
  
  $('#yplaylist').before("<div id='playlist-nav'><a href='#' id='prev'>Previous</a> <a href='#' id='next'>Next</a></div>");
  
    // News and Events Tabs on Home
    $('.tabs').tabs();  

  // Extra tabs on home
    $('.content-sub-block2').tabs();
});


$(document).ready(function() { 

// Facilities accordion on home
          $(".facilities").accordion({ 
           header: "h3",
           autoHeight: false,
           active: false,
           collapsible: true
         });
       
          })
       
       
       
         
       
$(document).ready(function() { 
$.fn.accordion.defaults.container = false; 
$(function() {
  $("#acc1").accordion({
    el: ".h", 
    head: "h4, h5", 
    next: "div"
  });
});
})

