var listMenu
function ie_fix()
{	
	listMenu = new FSMenu('listMenu', true, 'visibility', 'visible', 'hidden');
	listMenu.cssLitClass = 'highlighted';
	
	// I'm applying them both to this menu and setting the speed to 20%. Delete this to disable.
	listMenu.animations[listMenu.animations.length] = animFade;
	listMenu.animations[listMenu.animations.length] = animClipDown;
	listMenu.animSpeed = 10;
	
	var arrow = null;
	if (document.createElement && document.documentElement)
	{
	    arrow = document.createElement('span');
	    arrow.appendChild(document.createTextNode('»'));
	    //arrow = document.createElement('img');
	    //arrow.src = 'arrow.gif';
	    //arrow.style.borderWidth = '0';
	    arrow.className = 'subind';
	}
	
	//addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));
	
	//Activate menu pronto!
	listMenu.activateMenu("listMenuRoot", arrow); 
}