// JavaScript Document
function menuTop(n)
{
	var topMenu = '';
	var fileMenu=new Array('<a href="http://www.eestpl.com"><img src="images/home-menu.gif" alt="Home" width="64" height="33" border="0" onMouseOver="this.src=\'images/home-menu-select.gif\'" onMouseOut="this.src=\'images/home-menu.gif\'"></a>', '<a href="AboutUs.html"><img src="images/aboutus-menu.gif" alt="About us" width="93" height="33" border="0" onMouseOver="this.src=\'images/aboutus-menu-select.gif\'" onMouseOut="this.src=\'images/aboutus-menu.gif\'"></a>', '<a href="products.html"><img src="images/products-menu.gif" alt="Products" width="97" height="33" border="0" onMouseOver="this.src=\'images/products-menu-select.gif\'" onMouseOut="this.src=\'images/products-menu.gif\'"></a>', '<a href="Services.html"><img src="images/services-menu.gif" alt="Services" width="85" height="33" border="0" onMouseOver="this.src=\'images/services-menu-select.gif\'" onMouseOut="this.src=\'images/services-menu.gif\'"></a>', '<a href="Hiring.html"><img src="images/careers-menu.gif" alt="Careers" width="92" height="33" border="0" onMouseOver="this.src=\'images/careers-menu-select.gif\'" onMouseOut="this.src=\'images/careers-menu.gif\'"></a>');
	var fileMenuLink=new Array('<img src="images/home-menu-select.gif" alt="Home" width="64" height="33">', '<img src="images/aboutus-menu-select.gif" alt="About us" width="93" height="33">', '<img src="images/products-menu-select.gif" alt="Products" width="97" height="33">', '<img src="images/services-menu-select.gif" alt="Services" width="85" height="33">', '<img src="images/careers-menu-select.gif" alt="Careers" width="92" height="33">');
	topMenu += ('<table width="100%" border="0" cellpadding="0" cellspacing="0">');
		topMenu +=('<tr>');
		  topMenu +=('<td align="center" valign="middle">&nbsp;</td>');
		  topMenu +=('<td width="64" align="center" valign="middle">');
		  newVal = (n==1)?fileMenuLink[0]:fileMenu[0];
		  topMenu +=(newVal + '</td><td width="32" align="center" valign="middle">&nbsp;</td>');
		  topMenu +=('<td width="93" align="center" valign="middle">');
		  newVal = (n==2)?fileMenuLink[1]:fileMenu[1];
		  topMenu +=(newVal + '</td><td width="32" align="center" valign="middle">&nbsp;</td>');
		  topMenu +=('<td width="97" align="center" valign="middle">');
		  newVal = (n==3)?fileMenuLink[2]:fileMenu[2];
		  topMenu +=(newVal + '</td><td width="32" align="center" valign="middle">&nbsp;</td>');
		  topMenu +=('<td width="85" align="center" valign="middle">');
		  newVal = (n==4)?fileMenuLink[3]:fileMenu[3];
		  topMenu +=(newVal + '</td><td width="32" align="center" valign="middle">&nbsp;</td>');
		  topMenu +=('<td width="51" align="center" valign="middle">');
		  newVal = (n==5)?fileMenuLink[4]:fileMenu[4];
		  topMenu +=(newVal + '</td><td width="51" height="33" align="center" valign="middle">&nbsp;</td>');
		topMenu +=('</tr>');
	topMenu +=('</table>');
	document.getElementById("topMenu").innerHTML=topMenu;
}
