jQuery(document).ready(function() {
    jQuery('#authForm').insertBefore('#wrap');
    jQuery('#loginLink').bind('click', function() {
        jQuery('#authForm').slideToggle('1500');
        return false;
    });
    $('ul.sf-menu').superfish({
        delay: 0, // nuber of seconds delay on mouseout
        animation: {
            opacity: 'show'
        }, // fade-in and slide-down animation
        speed: 1, // faster animation speed
        autoArrows: false, // disable generation of arrow mark-up
        dropShadows: false // disable drop shadows
    });
})
