function show(event, id){
	var x,y;
	tMenu = document.getElementById(id);
	
	//hideAll();
	
	//tMenu = document.all(id);
	x=event.pageX;
	y=event.pageY;
	if(x == null)	//IE
		x=event.clientX + document.body.scrollLeft;
	if(y == null)	//IE
		y=event.clientY + document.body.scrollTop;
	
	tMenu.style.top=y + "px";
	tMenu.style.left=x + "px";
	tMenu.style.display='block';
	tMenu.style.zIndex = 1;
}

function hide(obj){
	obj.style.display='none';
	tMenu.style.zIndex = 0;
}

function hideAll()
{
	list = new Array();
	list[0] = "bass";
	list[1] = "meiji";
	list[2] = "moe";
	list[3] = "leopold_gouurmel";
	list[4] = "glenfiddich";
	list[5] = "macallan";
	list[6] = "bowmore";
	list[7] = "lagavulin";
	list[8] = "ezla";
	list[9] = "knob_creek";
	list[10] = "jameson";
	list[11] = "crown_royal";
	list[12] = "yoichi";
	list[13] = "kaku";
	list[14] = "old";
	list[15] = "coffee";
	list[16] = "moga";
	list[17] = "mobo";
	list[18] = "modern_lemonade";
	
	for(i in list)
	{
		hide(document.getElementById(list[i]));
	}
}
