$(document).ready(function(){ 
        $("ul.sf-menu").supersubs({ 
            minWidth:    10,   // minimum width of sub-menus in em units 
            maxWidth:    35,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish({
								delay: 10,
						animation:   {'marginLeft':'0px',height:'show'},  // fade-in and slide-down animation 
            speed:       10,                          // faster animation speed 
            autoArrows:  false,
						onBeforeShow: function(){ this.css('marginLeft','20px'); }						                      
									
				}); 
    });


