
		selected = null;
	
		dinner0=new Image();    dinner0.src="images/dinner0.gif";
		dinner1=new Image();	dinner1.src="images/dinner1.gif";
		salon0=new Image();		salon0.src="images/n-gallery.gif";
		salon1=new Image();		salon1.src="images/n-gallery-l.gif";
		market0=new Image();	market0.src="images/n-consult.gif";
		market1=new Image();	market1.src="images/n-consult-l.gif";
		client0=new Image();	client0.src="images/n-client.gif";
		client1=new Image();	client1.src="images/n-client-l.gif";
		history0=new Image();	history0.src="images/n-history.gif";
		history1=new Image();	history1.src="images/n-history-l.gif";
		contact0=new Image();	contact0.src="images/n-contact.gif";
		contact1=new Image();	contact1.src="images/n-contact-l.gif";
		home0=new Image();		home0.src="images/n-home.gif";
		home1=new Image();		home1.src="images/n-home-l.gif";
		link0=new Image();		link0.src="images/link1.gif";
		link1=new Image();		link1.src="images/link-o-matic.gif";
		
		function mOver(what)
		{
			if(document.images && what != selected)
				document[what].src = eval(what + "1.src");
		}
	
		function mOut(what)
		{
			if(document.images && what != selected)
				document[what].src = eval(what + "0.src");
		}

		function select(what)
		{
			if(selected)
			{
				//	deselect previously highlighted link
				document[selected].src = eval(selected + "0.src");
			}
			
			//	set new highlighted link
			selected = what;
			document[what].src = eval(what + "1.src");
		}	
		
	

function show(what)
{
	if(document.getElementById)
	{
		obj	= "menu" + what;
		document.getElementById(obj).style.visibility		= "visible";
		document.getElementById('table').style.visibility	= "visible";
	}
}

function hide(what)
{
	if(document.getElementById)
	{
		obj	= "menu" + what;
		document.getElementById(obj).style.visibility		= "hidden";
		document.getElementById('table').style.visibility	= "hidden";
	}
}

function mOver(what)
{
	if(document.images)
	{
		document.images[what].src	= eval(what + "1.src");
	}
}

function mOut(what)
{
	if(document.images)
	{
		document.images[what].src	= eval(what + "0.src");
	}
}
