// To create more menus, duplicate this section and make sure you rename your
// menu object to something different; also, activate another <ul> list with a
// different ID, of course :). You can hae as many menus as you want on a page.

// Here's a menu object to control the above list of menu data:
var listMenuD = new FSMenu('listMenuD', true, 'display', 'block', 'none');
listMenuD.animations[listMenuD.animations.length] = FSMenu.animFade;
listMenuD.animations[listMenuD.animations.length] = FSMenu.animClipDown;
listMenuD.animSpeed = 20;
var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>>'));
 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenuD.activateMenu("listMenuRootD", arrow)'));