Hi arhitek !
detail about load menu system :
open ja_vars.php file in templates/ja_corona folder, find code section :
//Main navigation
$japarams = new JParameter('');
$japarams->set( 'menu_images', 1 ); // Source of menu
$japarams->set( 'menu_images_align', 'left' );
$japarams->set( 'menutype', 'mainmenu' );
switch ($tmpTools->getParam(JA_TOOL_MENU)) {
case 1:
$menu = "Splitmenu";
include_once( dirname(__FILE__).DS.'ja_menus/'.$menu.'.class.php' );
break;
case 2:
case 4:
$menu = "CSSmenu";
include_once( dirname(__FILE__).DS.'ja_menus/'.$menu.'.class.php' );
break;
case 3:
$menu = "DLmenu";
include_once( dirname(__FILE__).DS.'ja_menus/'.$menu.'.class.php' );
break;
}
$menuclass = "JA_$menu";
$jamenu = new $menuclass ($japarams);
obove code is code for switch menu type, $tmpTools->getParam(JA_TOOL_MENU) is function for get menu type ( 1 for Splitmenu, ….) you can replace it by variable of you .
You open index.php file in templates/ja_corona folder , find code line :
$jamenu->genMenu (0);
this is code for load menu system for template .
You don’t forget copy ja_menus folder from ja_corona template to your template .