// Here's a menu object to control the above list of menu data:
var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
listMenu.cssLitClass = 'highlighted';
var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('img');
// 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 = 'images/img.arrow.gif';
 arrow.style.borderWidth = '0';
 arrow.style.width='12px'
 arrow.style.height='12px'

 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));

