var menuItems=new Array(new Array("Home","index.html"),			new Array("The Tower","tower.html"),			new Array("Peals","peals.asp"),			new Array("Ringing","ringing.html"),			new Array("The Team","team.html"),			new Array("News","news.asp"),			new Array("Contact us","contact.html"),			new Array("Admin","login.asp"));var currentMenuItem=0;function getCurrentMenu(){	return currentMenuItem;}function setCurrentMenu(newMenu){	currentMenuItem=newMenu;}function drawTopMenu (newMenu){	setCurrentMenu(newMenu);	document.write('<a name="#top"></a>');	document.write('<Table Border="0" Cellpadding="0" Cellspacing="0"  Height="80">');	document.write('	<Tr Height="80">');	document.write('		<Td Height="70" Colspan="10"><Img Src="images/banner.jpg" Alt="www.chalfontringers.org.uk"></Td>');	document.write('	</Tr>');	document.write('	<Tr Height="20">');	for (var i=0;i<menuItems.length;i++)	{		if (i==getCurrentMenu())		{			document.write('		<Td Width="40" Height="20" Bgcolor="#7F6837" Nowrap>');		}		else		{			document.write('		<Td Width="40" Height="20" Bgcolor="Black" Nowrap>');		}		document.write('			<A Href="'+ menuItems[i][1] +'">'+ menuItems[i][0] +'</A>');		document.write('		</Td>');	}	document.write('	</Tr>');	document.write('</Table>');}function drawBottomMenu(){	document.write('<table border="0" cellpadding="0" cellspacing="0" width="400" bgcolor="#2f2714" height="20">');	document.write('	<tr height="20">');	document.write('		<td width="400" height="20">');	document.write('			<center> |');	for (var i=0;i<menuItems.length;i++)	{		document.write('				<A Href="'+ menuItems[i][1] +'">'+ menuItems[i][0] +'</A> | ');	}	document.write('			</center>');	document.write('		</td>');	document.write('	</Tr>');	document.write('</Table>');}function playSnd(sndName){ 	document.getElementById(sndName).src = "data/" + sndName + ".wav";} function getmail(name, domain, link){	document.write('<a class="link1" href="mailto:'+name+'@'+domain+'">' + link + '</a>');}