	var menu=new Array();
// menu content
	menu[0]="Management|index.php?to=who,"+
		"Associates|index.php?to=team_editorial";
	menu[1]="Publication Services|index.php?to=services,"+
		"Practice Enhancement Services|index.php?to=addservices,"+
		"Practice Passport|index.php?to=passport";

//menu function

	var hideTime;
	function showmenu(elem,incoming){
		clearTimeout(hideTime);
		var tableText="<table border='0' cellpadding='0' cellspacing='3' bgcolor='white' style='border-color:#7BAAEA;border-style:solid;border-width:1px;' bgcolor='#cccccc' onmouseover='clearTimeout(hideTime);' onmouseout='hidemenu();'>";
		currentMenu=menu[incoming-1].split(',');
		for (var i=0;i<currentMenu.length;i++){
			var tempArr=currentMenu[i].split('|');
			tableText+="<tr><td nowrap>&nbsp;<a href='"+tempArr[1]+"' class='menu'>"+tempArr[0]+"</a>&nbsp;</td></tr>"
		}
		tableText+="</table>"
		document.getElementById('menutable').innerHTML=tableText;
		//alert();
		//if(navigator.appName=="Microsoft Internet Explorer")
		document.getElementById('menutable').style.left=elem.offsetLeft+"px";
		/*else
		document.getElementById('menutable').style.left=elem.offsetLeft+"px";*/
		
		document.getElementById('menutable').style.top=elem.offsetTop+elem.offsetHeight+"px";
		document.getElementById('menutable').style.display='block';
	}
	function hideit(){
		document.getElementById('menutable').style.display='none';
	}
	function hidemenu(){
		hideTime=setTimeout("hideit()",300);
	}

