$(document).ready(
function() { 
    $('#account-panel').hide().insertAfter('#utilities');
    $('#toggle-link').click(
        function() {
            $('#account-panel').slideToggle('fast');
            $(this).toggleClass('closed');
			$(this).find('a').toggle();
			if (this.className=='closed') {
				$(this).html($(this).html()+"<span>Close panel</span>");
			} else {
				$(this).find('span').remove();
			}
            this.blur();
            return false;
        }
    );
}
);