	var menu=new Array();
// menu content
	menu[0]="Fruit Portraits Series|gallery_fruit.html,"+
		"Sweet Addiction Series|gallery_sweet.html,"+
                "NimphAmania Series|gallery_nimpha.html";



/*    menu[4]="Judith Hellman MD Skin Care|products2.asp,"+
	    "Glycolic Acid (Fruit Acid) Products|products.asp#fruit,"+
		"Retin-A|products.asp#acid,"+
		"Others|products.asp#micro";
*/

//menu function

	var hideTime;
	function showmenu(elem,incoming){
		clearTimeout(hideTime);
		var tableText="<table border='0' cellpadding='0' cellspacing='0' bgcolor='black' style='margin: 0px 0px 0px 320px; padding: 3px 3px 10px 3px; ' 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='menuclass'>"+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.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.offsetLeft+elem.offsetLeft+37+"px";
		else
		document.getElementById('menutable').style.left=elem.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.offsetLeft+elem.offsetLeft+45+"px";
		document.getElementById('menutable').style.top=elem.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.offsetTop+elem.offsetHeight+1+"px";
		document.getElementById('menutable').style.display='block';
	}
	function hideit(){
		document.getElementById('menutable').style.display='none';
	}
	function hidemenu(){
		hideTime=setTimeout("hideit()",300);
	}
