/** * @author JoomlaShine.com http://www.joomlashine.com * @copyright Copyright (C) 2008 - 2009 JoomlaShine.com. All rights reserved. * @license Copyrighted Commercial Software * This file may not be redistributed in whole or significant part. */ /* Menu */ function jsnSetMenuFX(menuId, menuFX, options) { switch(menuFX) { case 0: JSNUtils.sfHover(menuId); break; case 1: if (typeof(MooTools) != 'undefined') { new MooMenu($(menuId), options) } else { jsnSetMenuFX(menuId, 0, options); } break; } } function jsnSetMainmenuFX(menuId, menuFX, options) { if (typeof(MooTools) != 'undefined') { window.addEvent('domready',function() { jsnSetMenuFX(menuId, menuFX, options); }); } else { JSNUtils.addEvent(window, 'load', function() { jsnSetMenuFX(menuId, menuFX, options); }); } } function jsnInitSidemenu(menuClass, menuFX, options) { var sidemenus, sidemenu, menuId; // Set ids for all side menus base on class sidemenus = JSNUtils.getElementsByClass(document, "UL", menuClass); if (sidemenus == undefined) return; for(var i=0;i