
$(document).ready(function() {
    var sub_nav = $('#top_nav li.more')
    var rotator_buttons = $('#button_row a')

    $('#ModalWindow').jqm({
        ajax: '@href',
        trigger: 'a.showmodal'
    });

    // show/hide sub nav
    sub_nav.mouseover(function() {
        $(this).addClass('active');
    });

    sub_nav.mouseout(function() {
        $(this).removeClass('active');
    });

    $('.front_tab').hover(function() {
        $('.rotator_lower_content').hide();
        var el = $(this).attr('href');
        $(el).show();
        $('.front_tab').addClass("off");
        $(this).removeClass("off");
    },
	    function() {
	    }
    );

    $('#ShopTable').click(function() {
        window.location = '/shop.aspx';
    });

    try {
        var i = 0;

        $('.pics').each(function() {
            var pic = $(this);
            var time = i * 3000;
            setTimeout(function() {
                pic.cycle({
                    fx: 'fade',
                    timeout: 6000, 
                    speedIn: 300,
                    speedOut: 300,
                    delay: 6000,
                    pause: true
                });
            }, time);
            i++;
        });
    } catch (e) { }
});
