jQuery(document).ready(function(){

    jQuery('.dropdown').width(jQuery('.mainButton').width()-2);

    jQuery('.mainButton').hover(
      function () {
        jQuery('.javascriptHook', this).addClass('slide-down'); 
        jQuery('.dropdown', this).slideDown(50);
      }, 
      function () {
        obj = this;
        jQuery('.dropdown', this).slideUp(100, function(){ jQuery('.javascriptHook', obj).removeClass('slide-down'); });
      }
    );

});
