I have figured out how to move my css top position with jquery however I would like the #menu id to change top position based on the toggle. So Basically I want the #menu to drop 50 px when the anchor is clicked and slide back up 50px when the anchor is clicked again, but currently it only moves down and stays down, not sure how to accomplish this. Im close I know it.
jQuery(document).ready(function($) {
$('#menu a').click(function() {
$('#menu').css("top","50px");
$('#navResponsive').slideToggle('fast', function() {
});
});
});
