$(document).ready(function() {
    $('a#onlineFeatureLink').html('&gt;&gt; Click to view');

    // Main Menu
    $('#globalMenu ul').hide();
    $('#globalMenu li.active ul').show();


    $('li.withSub a:not(.aTagLevel-2)').bind('click', function() {
        $('li.withSub.open ul').hide();
        $('li.withSub.open').removeClass('open');
        $(this).parent('.globalMenuLevel-1').addClass('open');
        $('li.withSub.open ul').show();
        return false;
    });

    // Home Page Drawers

    $('.drawerContent').hide();
    $('.drawerContent:first').slideDown('slow');

    $('.drawerHeader').bind('click', function() {
        if ($(this).next('.drawerContent').is(':hidden')) {
            $('.drawerContent').slideUp('fast');
            $('.drawerHeader').removeClass('active');
            $(this).addClass('active');
            $(this).next('.drawerContent').slideDown('fast');
        }
    });

    $('#checkout .proceed').bind('click', function() {

        if ($('#tab-1').hasClass('active')) {
            $('.tab').removeClass('active');
            $('#tab-2').addClass('active');
            $('#myAccount .formHeader').hide();
            $('#checkout .formHeader').hide();
            $('#myAccount .manageBillingHeader').show();
            $('#checkout .shippingInfoHeader').show();
            $('.formBodyWrap').hide();
            $('#formPanel-2').show();
            return false;
        }

        else if ($('#tab-2').hasClass('active')) {
            $('.tab').removeClass('active');
            $('#tab-3').addClass('active');
            $('#myAccount .formHeader').hide();
            $('#checkout .formHeader').hide();
            $('#myAccount .manageShippingHeader').show();
            $('#checkout .creditCardInfoHeader').show();
            $('.formBodyWrap').hide();
            $('#formPanel-3').show();
            return false;
        }

        else if ($('#tab-3').hasClass('active')) {
            $('.tab').removeClass('active');
            $('#tab-4').addClass('active');
            $('#myAccount .formHeader').hide();
            $('#checkout .formHeader').hide();
            $('#myAccount .managePromoEmailHeader').show();
            $('#checkout .orderMethodHeader').show();
            $('.formBodyWrap').hide();
            $('#formPanel-4').show();
            $('#checkout .formSubmit').removeClass('proceed');
            return false;
        }

        else {
            return true;
        }


    });

});
