aMenuItems = new Array('About us', 'Solutions', 'Services', 'Careers', 'Contact us')
aMenuPages = new Array('aboutus', 'solutions', 'services', 'careers', 'contactus')

function writeMenu() {
	document.write('<table cellpadding="0" cellspacing="0" border="0">')
	document.write('<tr>')
	document.write('	<td class="menu1">')
	document.write('		<div id="menu">')
	document.write('			<table cellpadding="0" cellspacing="0" border="0">')
	for (i = 0; i < aMenuItems.length; i++) {
		id = 'menu' + (i + 1)
		document.write('		<tr>')
		document.write('			<td id="' + id + '"><img src="images/mm1.gif" width="6" height="9" border="0"></td>')
		document.write('			<td><a href="' + aMenuPages[i] + '.php" onmouseover="onMenuOver(\''+ id + '\')" onmouseout="onMenuOut(\''+ id + '\')">' + aMenuItems[i] + '</a></td>')
		document.write('		</tr>')
	}
	document.write('			</table>')
	document.write('		</div>')
	document.write('	</td>')
	document.write('	<td>')
	document.write('		<img src="images/header2.gif" width="428" height="324" border="0" usemap="#menuMap">')
	document.write('		<map id="menuMap" name="menuMap">')
	document.write('			<area coords="313,286,420,306" href="login.php">')
	document.write('			<area coords="337,72,357,92" href="index.php">')
	document.write('			<area coords="374,72,395,92" href="contactus.php">')
	document.write('		</map>')
	document.write('	</td>')
	document.write('</tr>')
	document.write('</table>')
}

function onMenuOver(id) {
	td = document.getElementById(id)
	td.innerHTML = '<img src="images/mm2.gif" width="6" height="9" border="0">'
}

function onMenuOut(id) {
	td = document.getElementById(id)
	td.innerHTML = '<img src="images/mm1.gif" width="6" height="9" border="0">'
}
