diff --git a/fg.menu.js b/fg.menu.js index d8d584f..ff7b0c7 100755 --- a/fg.menu.js +++ b/fg.menu.js @@ -103,7 +103,7 @@ function Menu(caller, options){ .addClass('fg-menu-open') .addClass(options.callerOnState); container.parent().show().click(function(){ menu.kill(); return false; }); - container.hide().slideDown(options.showSpeed).find('.fg-menu:eq(0)'); + container.hide().slideDown(options.showSpeed).find('.fg-menu:eq(0)').show(); menu.menuOpen = true; caller.removeClass(options.loadingState); $(document).click(killAllMenus); @@ -642,4 +642,4 @@ Number.prototype.pxToEm = String.prototype.pxToEm = function(settings){ var result = (settings.reverse == true) ? (pxVal * scopeVal).toFixed(2) + 'px' : (pxVal / scopeVal).toFixed(2) + 'em'; return result; -}; \ No newline at end of file +};