$(document).ready(function() {
 // hides the dropdown as soon as the DOM is ready (a little sooner that page load)
  $('#dropdown').hide();

 // slides down, up, and toggle the dropdown on click    
  $('#slidetoggle').click(function() {
    $('#dropdown').slideToggle(300);
    return false;
  });
});