﻿// <![CDATA[
// hide tabs until slideshow images are loaded
jQuery(document).ready(function($) {
    jQuery("#slideshow-tabs").hide();
    jQuery("div.panes").hide();
    jQuery(".locationCategoryLinks .location").hover(
    function() {
        $(this).toggleClass('hover');
        $(this).find('.number').toggleClass('hover');
    },
    function() {
        $(this).toggleClass('hover');
        $(this).find('.number').toggleClass('hover');
    });
});

// remove tabs for missing slideshow images
jQuery(".banner_slide img").error(function() {
    var anchor = jQuery(this).parent();
    jQuery('#' + anchor.attr('rel')).remove();
    anchor.remove();
});

// once all images are loaded, initialize tabs and slideshow
jQuery(window).load(function() {
    jQuery("div.panes").show();

    jQuery("#slideshow-tabs").show();
    jQuery("#slideshow-tabs").tabs(".images > div", { effect: "fade", fadeOutSpeed: "slow", rotate: true }).slideshow({ autoplay: true, interval: 5000, clickable: false });
});
// ]]>
