jQuery(document).ready(function(){

    // When user clicks in email field, more options fade in.
    jQuery('#fields_email').focus(function(){ jQuery('#notify-options').fadeIn(300); });

    // Help, Login, and Cart slide-downs.
    jQuery('.side-links a.first').click(function(){
        jQuery('.block-login,.block-cart').slideUp('fast');
        jQuery('.block-help').slideToggle(); return false;
    });
    jQuery('.side-links a.second').click(function(){
        if ( jQuery(this).html() == "Login") { jQuery('.block-help,.block-cart').slideUp('fast'); jQuery('.block-login').slideToggle(); return false } else { return true; }
    });
    jQuery('.side-links a.third').click(function(){
        jQuery('.block-help,.block-login').slideUp('fast');
        jQuery('.block-cart').slideToggle(); return false;
    });

});
