function findPosition()
{
	var left, leftPos, position, menus;
	left = document.getElementById("act0");	
	leftPos = DL_GetElementLeft(left);
	position = leftPos + 15;
	
	if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion >= "4.0")
	{
		position -= 279;
		var menus = [new ypSlideOutMenu("menu1", "down", position, 125, 600, 200)]
	}
	
	if (navigator.appName == "Netscape" && navigator.appVersion >= "4.0")
	{
		// output = "Netscape 4.0+";
		var menus = [new ypSlideOutMenu("menu1", "down", position, 125, 325, 200)]
	}	
	
	// menus = [new ypSlideOutMenu("menu1", "down", position, 125, 225, 250)]

	for (var i = 0; i < menus.length; i++) 
	{
		menus[i].onactivate = new Function("document.getElementById('act" + i + "').className='active';");
		menus[i].ondeactivate = new Function("document.getElementById('act" + i + "').className='';");
	}

  ypSlideOutMenu.writeCSS();
}