jQuery(document).ready(function() {
  
  
  // Adding the menu
  jQuery('body:not(body.iframe)').append('<div id="snm"></div>')
  jQuery('#snm').load('/wp-content/mu-plugins/snm_inc/snm.html', function() {
    
    // Setting the width of the menu to avoid animation jumping
    var snmwidth = jQuery('#snm').outerWidth() + 'px';
    jQuery('#snm').css('width', snmwidth);
    
    // Hiding it so we can animate it later
    jQuery('#snm #snm-menu').hide();
  
  });
  
  
  // Animating the menu
  jQuery('#snm').click(function() {
    jQuery('#snm #snm-menu').slideToggle('300');
  });


});
