I misunderstood your question.
Do you mean you want the dropdown-menu like in ABAKUS?
1) download Abacus theme and unzip it
2) in template.php you find this in the <head>-section:
Code:
<script src="<?php get_theme_url(); ?>/js/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="<?php get_theme_url(); ?>/js/jquery.nmcDropDown.min.js" type="text/javascript"></script>
<script src="<?php get_theme_url(); ?>/js/gs.abacus.theme.js" type="text/javascript"></script>
<script type="text/javascript"><!--
try {
document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
/* IE6 flicker hack from http://dean.edwards.name/my/flicker.html */
--></script>
<script type="text/javascript">
$(document).ready(function() {
// Setup the nav drop-downs
$('.menu').nmcDropDown({
show: {height: 'show', opacity: 'show'}
});
});
</script>
this code must be included in the header.php of Innovation
3) copy the folder /js from the abacus-directory to your Innovation-directory
4) add this to the header-div of your template.php:
Code:
<div id="header">
.....
<div id="nav">
<?php menu_master(); ?>
</div>
</div><!-- end div#header -->
5) download the multilevel-plugin from here and install it into your plugins-directory:
http://get-simple.info/forum/viewtopic.p...3052#p3052
that's all I could find studying the abacus theme-templates.
Cheers, Connie