    
    $(document).ready( function() {
        
        $('a#passwordChangeLink').click( function() {
            
            var current = $('div#passwordChange')[0].style.display;
            
            if(current == "none") { $('div#passwordChange').slideDown("slow"); }
            else { $('div#passwordChange').slideUp("slow"); }
            
        });
        
    });