$(document).ready(function(){ 
        $("ul.sf-menu").superfish({
								  
			delay:       1000,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       80,                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false,                            // disable drop shadows 
  		  onShow:function(){
		   $(".globallink").animate({width: "0px"}, 0 );
			  },       // callback function fires once reveal animation completed – 'this' is the opened ul 
   		  onHide:function(){ 
		   $(".globallink").animate({width: "172px"}, 0 );
		 
		  }        // callback function fires after a sub-menu has closed – 'this' is the ul that just closed 
								  }); 
    }); 
