
$(document).ready(function() {

          $('.mainMenuButton a').click(function(event) {
           
                       event.preventDefault();
           
           });

          $('.mainMenuButton').toggle(function() {
          
                          $(this).next('div').slideDown('fast'); },
                       
                       function() {
                       
                          $(this).next('div').slideUp('fast');  });

              
                       
   
});

