function mhOn(which)
{
var first = 'menu' + which;
var second = 'menu' + eval(which + 1);
document.getElementById(first).className='overh';
}

function mhOff(which)
{
var first = 'menu' + which;
var second = 'menu' + eval(which + 1);
document.getElementById(first).className='outh';
}

function go(where)
{
var nav = new Array()
nav[0] = '0';
nav[1] = 'index.php';
nav[2] = 'Rates.php';
nav[3] = 'Gallery.php';
nav[4] = 'Attractions.php';
nav[5] = 'Rooms.php';
nav[6] = 'Tearooms.php';
nav[7] = 'MapContact.php';

for(i=1; i<=nav.length; i++)
	{
	if(i==where)
		{
		document.location.href=nav[where];
	  }
  }
}  
