You need to edit global.php
Find this:
PHP Code:
// the really important ones
'header',
'footer',
Replace with:
PHP Code:
// the really important ones
'header',
'footer',
'menutop',
'menumiddle',
'menubottom',
Then find:
PHP Code:
eval('$header = "' . fetch_template('header') . '";');
Replace with:
PHP Code:
eval('$menutop = "' . fetch_template('menutop') . '";');
eval('$menumiddle = "' . fetch_template('menumiddle') . '";');
eval('$menubottom = "' . fetch_template('menubottom') . '";');
eval('$header = "' . fetch_template('header') . '";');
You then need to create 3 new templates named 'menutop', 'menumiddle', 'menubottom'. Once you have added the templates you can call them via the header template with the following vars:
PHP Code:
$menutop
$menumiddle
$menubottom