$(document).ready(function(){ 

  $("ul.sf-menu").superfish({
    // autoArrows:  false,                        // disable generation of arrow mark-up 
    // dropShadows: false,                        // disable drop shadows 
    animation: {opacity:'show', height:'show'},   // fade-in and slide-down animation 
    speed: 100,                                   // animation speed
    delay: 0                                      // delay on mouseout 
  });

  $("ul.sf-menu2").superfish({
    autoArrows:  false,                        // disable generation of arrow mark-up 
    // dropShadows: false,                        // disable drop shadows 
    animation: {opacity:'show', height:'show'},   // fade-in and slide-down animation 
    speed: 100,                                   // animation speed
    delay: 0                                      // delay on mouseout 
  });
});