﻿$(document).ready(function() {

    $("#tabs").show();
    $(".top5_Master").show();
    $(".cs-module-left-230").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
    });

    $('#blockCycle2').cycle({
        /*fx: 'blindX',*/
        speed: 600,
        delay: 2000,
        pause: 3
    });

    // Global: External Links
    $('A[rel="external"]').click(function() {
        window.open($(this).attr('href'));
        return false;
    });
	
	// Custom Background
	$('body').addClass('bodyLandingPage');

    // Cycle Featured Box
    $('#featuredTips').cycle({
        prev: '#prevTip',
        next: '#nextTip',
        speed: 600,
        timeout: 0
        //delay: 200,
        //pause: 3
        
    });




});

