﻿

var listMenuRootB = new FSMenu('listMenuRootB', true, 'display', 'block', 'none');
//listMenuB.animations[listMenuB.animations.length] = FSMenu.animFade;
listMenuRootB.animations[listMenuRootB.animations.length] = FSMenu.animSwipeDown;
listMenuRootB.showDelay = 0;
listMenuRootB.animInSpeed = 300;
listMenuRootB.animOutSpeed = 300;
listMenuRootB.switchDelay = 325;




var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));
 // Feel free to replace the above two lines with these for a small arrow image...
 //arrow = document.createElement('img');
 //arrow.src = 'arrow.gif';
 //arrow.style.borderWidth = '0';
 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenuRootB.activateMenu("listMenuRootB", arrow)'));



