
// ListMenu1
var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;

var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('>'));

 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu.activateMenu("listMenu1", arrow)'));

// ListMenu2
var listMenu2 = new FSMenu('listMenu2', true, 'display', 'block', 'none');

listMenu2.animations[listMenu2.animations.length] = FSMenu.animFade;
listMenu2.animations[listMenu2.animations.length] = FSMenu.animSwipeDown;

var arrow2 = null;
if (document.createElement && document.documentElement)
{
 arrow2 = document.createElement('span');
 arrow2.appendChild(document.createTextNode('>'));

 arrow2.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu2.activateMenu("listMenu2", arrow)'));
