Try adding the below function to the HEAD section of your page:
Code:
<script>
function togglemenu(menuid, action){
var $=jQuery
var $menu=$('#'+menuid)
if (action=='disable'){
$menu.find('ul:eq(0)').css({visibility:'hidden'})
}
else{
$menu.find('ul:eq(0)').css({visibility:'visible'})
}
}
</script>
It lets you "hide" the inner contents of a smooth menu on demand, essentially disabling it on demand. For example, the following two links when clicked on enables/disables the Smooth Menu with ID "#smoothmenu1":
Code:
<a href="javascript:togglemenu('smoothmenu1', 'disable')">Disable</a> | <a href="javascript:togglemenu('smoothmenu1', 'enable')">Enable</a>
Bookmarks