Here is the script I'm using:
$(function () {
$('#nav a[title=toggle]').click(function() {
$('#user').slideToggle();
});
});
However, when I click the Toggle link located on the nav bar, it slides the #user up, and immediately slides #user back down.
Here's the CSS for #user:
#user {
z-index:1;
position:fixed;
left:0px;
width: 100%;
margin-top: -40px;
padding-top: 50px;
height: 40px;
background:#09F;
color:#FFF;
font-weight: bold;
-webkit-border-radius: 10px;
}