﻿$(document).ready(function() {

    $("#tabs").show();
    $(".blockCycleWrap").show();

    // Landing Page: Featured Categories Tabs
    $("ul#featuredNav").idTabs();
    
    // Landing Page: Auto-Rotating Tabs
    $("#tabs ul").tabs({
        fx: {
            opacity: "toggle"
        }
    }).tabs("rotate", 7000);

    $('#blockCycle').cycle({
        /*fx: 'blindX',*/
        speed: 600,
        delay: 2000,
        pause: 3
    });

    // Global: External Links
    $('A[rel="external"]').click(function() {
        window.open($(this).attr('href'));
        return false;
    });

});

