//Script will hide an element immediately without temporarily appearing while the browser loads page elements

//this adds a class to the html so #dropdown is set to display none immediatey 
$('html').addClass('js');

$(document).ready(function() {
$('#dropdown').slideDown('slow');
        //click function
        $('.toggle').click(function(){
            $('#dropdown').slideUp('slow');
        });
  });