
MColOver = '"#625545"';
MOver = "'mOvr(this," + MColOver + ");'";

MColOut = '"#625545"';
MOut = "'mOut(this," + MColOut + ")'";

SOut = "'mOut(this," + MColOver + ")'";
SCol = '"#625545"';





function displayMenu(Mitem) 
{

	var MenuTitle=new Array()
	var MenuURL=new Array()

	MenuTitle[0] 	= "HOME"
	MenuURL[0]	= "index.htm"

	MenuTitle[1] 	= "HOW WE WORK"
	MenuURL[1]	= "howwework.htm"

	MenuTitle[2] 	= "OUR STYLE"
	MenuURL[2]	= "ourstyle.htm"

	MenuTitle[3] 	= "£££'s"
	MenuURL[3]	= "charges.htm"

	MenuTitle[4] 	= "ABOUT US"
	MenuURL[4]	= "aboutus.htm"

	MenuTitle[5] 	= "TYPICAL CLIENTS"
	MenuURL[5]	= "clients.htm"

	MenuTitle[6] 	= "STORIES"
	MenuURL[6]	= "cases.htm"

	MenuTitle[7] 	= "FAQ's"
	MenuURL[7]	= "faqs.htm"

	document.write ('      <table border="0" width="100%" cellspacing="0" cellpadding="0" >  ')
	document.write ('        <tr valign=middle> ')


	var x=0;

	for (x=0; x<8; x++) 
	{ 

		if (Mitem==MenuTitle[x])
		{
		document.write ('          <td height="38" align=center nowrap  onMouseOver=' + MOver + ' onMouseOut=' + MOut + 'onClick="mClk(this);">&nbsp;<a class="menuselected" href="' + MenuURL[x] + '">' + MenuTitle[x] + '</a></td>  ')
		} else
		{
		document.write ('          <td height="38" align=center nowrap  onMouseOver=' + MOver + ' onMouseOut=' + MOut + 'onClick="mClk(this);">&nbsp;<a class="menu" href="' + MenuURL[x] + '">' + MenuTitle[x] + '</a></td>  ')
		}
	}


	document.write ('        </tr> ')


	//document.write ('        <tr> ')
	//document.write ('          <td height="21" onMouseOver=' + MOver + ' onMouseOut=' + MOut + ' onClick="mClk(this);">&nbsp;<a href="businesscentres.htm"><img src="images/b_businesscentres.gif" width="188" height="21" border="0" alt="business centres"></a></td>  ')
	//document.write ('        </tr> ')



	//document.write ('        <tr>   ')
	//document.write ('          <td>&nbsp;</td>     ')
	//document.write ('        </tr>  ')

	document.write ('      </table>   ')

}









