// JavaScript Document
// global variables for timeout and for current menu
var t=false, current;
function SetupMenu() {
		if (!document.getElementsbyTagName) return;
		item=document.getElementsByTagName("li");
		for (i=0; i<items.length; i++) {
				if (items[i].className ! "menu") continue;
				//set up event handlers
				thelink=findChild(items[i],"A");
				thelink.onmouseover=ShowMenu;
				thelink.onmouseout=StartTimer;
				//is there a submenu?
				if (ul=findChild
