//FreeStyle Menu by Angus Turnbull http://www.twinhelix.com

//<![CDATA[

var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');

//listMenu.showDelay = 0;
//listMenu.switchDelay = 125;
listMenu.hideDelay = 50;
//listMenu.cssLitClass = 'highlighted';

listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
//listMenu.animations[listMenu.animations.length] = FSMenu.animClipDown;

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';
}
addReadyEvent(new Function('listMenu.activateMenu("listMenuRoot", arrow)'));

//]]>
