function displayNavTop()  {
	document.write("<center><a href='http://www.manhattanstrain.com/'><img src='images/tms_logo.png'></a></center><br>");
	document.write('<table cellspacing="0" cellspacing="500" align="center">');
	
	newTD();
		document.write("<a href='home.htm'><img name='home' id='home' src='images/buttons/home.gif' onmouseover='return overBut(name);' onmouseout='return outBut(name);' onmousedown='return downBut(name);' width='15%'></a>");	
		document.write("<a href='profiles.html'><img name='iv' id='iv' src='images/buttons/iv.gif' onmouseover='return overBut(name);' onmouseout='return outBut(name);' onmousedown='return downBut(name);' width='15%'></a>");
		document.write("<a href='media.html'><img name='media' id='media' src='images/buttons/media.gif' onmouseover='return overBut(name);' onmouseout='return outBut(name);' onmousedown='return downBut(name);' width='15%'></a>");	
		document.write("<a href='features.html'><img name='game' id='game' src='images/buttons/game.gif' onmouseover='return overBut(name);' onmouseout='return outBut(name);' onmousedown='return downBut(name);' width='15%'></a>");
		
		document.write("<img src='images/buttons/nav_bar.png' width='65%'>");	
	endTD();
		
	document.writeln('</table>');
}

function overBut(name)  {
	document.getElementById(name).src= "images/buttons/"+name+"_f2.gif";
}
function outBut(name)  {
	document.getElementById(name).src= "images/buttons/"+name+".gif";
}

function downBut(name)  {
	document.getElementById(name).src= "images/buttons/"+name+"_f3.gif";
}

function displayBottom()
{
	document.write("<hr><center>");
	document.writeln("Designed by David Reilly, Developed by Ciaran Culleton and David Reilly.");
}