//MENU ITEM DECLARATIONS
	//Tab Menus
	// Sanjeev date 27 mar 2006 commented below two lines and copy and pasted and removed "News and Events" and "newsandevents.html"
	//arrMenu1_Items = new Array("Home","About Us","Our Product and Services","News and Events","Contact Us","Partners Network");
	//arrMenu1_ItemsHref = new Array("index.html","thecompany.html","productsandservices.html","newsandevents.html","contactus.html","partnersnetwork.html");
	
	arrMenu1_Items = new Array("Home","About Us","Our Product and Services","Contact Us");
	arrMenu1_ItemsHref = new Array("index.html","missionstatement.html","productsandservices.html","contactus.html");
 	 	 	 	 	
	//Sub Menus
	arrSubMenu0_Items = new Array();
	arrSubMenu0_ItemsHref = new Array();
	
	//arrSubMenu1_Items = new Array("The Company","Our Mission","Our Strategy","Our Locations","Our Team","EOL Offshore");
	//arrSubMenu1_ItemsHref = new Array("thecompany.html","missionstatement.html","ourstrategy.html","ourlocations.html","theteam.html","eoloffshore.html");	
	
	arrSubMenu1_Items = new Array("Our Mission","Our Strategy","Our Locations","EOL Offshore");
	arrSubMenu1_ItemsHref = new Array("missionstatement.html","ourstrategy.html","ourlocations.html","eoloffshore.html");		

	arrSubMenu2_Items = new Array("Overview","BenEnroll","EOL Webservices","EOL Productsheet","HR Workstation","EOL Advantage","Technology","HR in a Box");
	arrSubMenu2_ItemsHref = new Array("productsandservices.html","beneroll.html","eolwebservices.html","eolproductsheet.html","humanresources.html","eoladvantage.html","technology.html","hrinabox.html");

	arrSubMenu3_Items = new Array("Subscribe");
	arrSubMenu3_ItemsHref = new Array("subscribe.html");

	arrSubMenu4_Items = new Array("Partner","Broker Sizzle");
	arrSubMenu4_ItemsHref = new Array("partnersnetwork.html","brokersizzi.html");
	
//function createTabMenu(tabMenuId,enabledTabMenuId,SubMenuId,enabledSubMenuId){
function createTabMenu(tabMenuId,enabledTabMenuId,SubMenuId,enabledSubMenuId){
	enabledMenuId = enabledTabMenuId-1;
	enabledSubMenuId = enabledSubMenuId-1;
	
	arrMenu_Items = eval("arrMenu"+tabMenuId+"_Items");
	arrMenu_ItemsHref = eval("arrMenu"+tabMenuId+"_ItemsHref");
	
	document.write('<tr>');
	document.write('  <td height="1" valign="top" nowrap>');
	document.write('    <table border="0" cellspacing="0" cellpadding="0">');
	document.write('      <tr>');
	for(i=0;i<arrMenu_Items.length;i++)
	{
		if(i==0)
		{
			if(i==enabledMenuId)
			{
				document.write('<td width="1" align="right" nowrap><img src="images/menu_start_on.gif" width="13" height="22"></td>');
				document.write('<td bgcolor="#003366" nowrap><div align="center"><font color="#FFFFFF" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;'+ arrMenu_Items[i] +'&nbsp;&nbsp;</strong></font></div></td>');
			}
			else
			{
				document.write('<td width="1" align="right" nowrap><img src="images/menu_start_off.gif" width="13" height="22"></td>');
				document.write('<td bgcolor="#CCCCCC" nowrap><div align="center"><font color="#003366" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;<a href="'+ arrMenu_ItemsHref[i] +'">'+ arrMenu_Items[i] +'</a>&nbsp;&nbsp;</strong></font></div></td>');
				//document.write('<td bgcolor="#CCCCCC" nowrap><div align="center"><font color="#003366" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;<a href="javascript:;" onClick="javascript:setCommand(\''+formName+'\',\''+commandName+'\',\''+arrMenu_ItemsHref[i]+'\');return false;">'+ arrMenu_Items[i] +'</a>&nbsp;&nbsp;</strong></font></div></td>');
			}
  		}
		else
		{
			if(i==enabledMenuId)
			{
				document.write('<td width="1" align="right" nowrap><img src="images/menu_off_on.gif" width="13" height="22"></td>');
				document.write('<td bgcolor="#003366" nowrap><div align="center"><font color="#FFFFFF" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;'+ arrMenu_Items[i] +'&nbsp;&nbsp;</strong></font></div></td>');
			}
			else
			{
				if((i-1)==enabledMenuId)
					document.write('<td width="1" align="right" nowrap><img src="images/menu_on_off.gif" width="13" height="22"></td>');
				else
					document.write('<td width="1" align="right" nowrap><img src="images/menu_off_off.gif" width="13" height="22"></td>');
					document.write('<td bgcolor="#CCCCCC" nowrap><div align="center"><font color="#003366" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;<a href="'+ arrMenu_ItemsHref[i] +'">'+ arrMenu_Items[i] +'</a></strong>&nbsp;&nbsp;</font></div></td>');
				  //document.write('<td bgcolor="#CCCCCC" nowrap><div align="center"><font color="#003366" size="2" face="Arial, Helvetica, sans-serif"><strong>&nbsp;&nbsp;<a href="javascript:;" onClick="javascript:setCommand(\''+formName+'\',\''+commandName+'\',\''+arrMenu_ItemsHref[i]+'\');return false;">'+ arrMenu_Items[i] +'</a></strong>&nbsp;&nbsp;</font></div></td>');
			}
  		}
		if(i==arrMenu_Items.length-1 && enabledMenuId==arrMenu_Items.length-1)
			document.write('<td nowrap><img src="images/menu_end_on.gif" width="13" height="22"></td>');
		else if(i==arrMenu_Items.length-1 && enabledMenuId!=arrMenu_Items.length-1)
			document.write('<td nowrap><img src="images/menu_end_off.gif" width="13" height="22"></td>');
	}
	
	document.write('      </tr>');
	document.write('    </table>');
	document.write('  </td>');
	document.write('</tr>');
	
	//Submenu Creation
	if(SubMenuId>=0)
	{
		arrSubMenu_Items = eval("arrSubMenu"+SubMenuId+"_Items");
		arrSubMenu_ItemsHref = eval("arrSubMenu"+SubMenuId+"_ItemsHref");
		document.write('<tr>');
		document.write('  <td bgcolor="#003366" height="1">');
		document.write('    <table width="100%" border="0" cellspacing="0" cellpadding="0">');
		document.write('      <tr>');
		document.write('	<td height="1" nowrap><div id="submenuLayer" style="position:static; left:2px; top:17px; z-index:1; background-color: #003366; layer-background-color: #003366; border: 1px none #000000; overflow: visible;"><div align="left">&nbsp;&nbsp;&nbsp;&nbsp;');

		for(i=0;i<arrSubMenu_Items.length;i++)
		{
			if(i==enabledSubMenuId)
				//document.write('<a href="javascript:;" onClick="javascript:setCommand(\''+formName+'\',\''+commandName+'\',\''+arrSubMenu_ItemsHref[i]+'\');return false;" class="submenuactive">'+arrSubMenu_Items[i]+'</a>&nbsp;&nbsp;&nbsp;&nbsp;');
				document.write('<a href="'+arrSubMenu_ItemsHref[i]+'" class="submenu">'+arrSubMenu_Items[i]+'</a>&nbsp;&nbsp;&nbsp;&nbsp;');
			else
				document.write('<a href="'+arrSubMenu_ItemsHref[i]+'" class="submenuinactive">'+arrSubMenu_Items[i]+'</a>&nbsp;&nbsp;&nbsp;&nbsp;');
				//document.write('<a href="javascript:;" onClick="javascript:setCommand(\''+formName+'\',\''+commandName+'\',\''+arrSubMenu_ItemsHref[i]+'\');return false;" class="submenu">'+arrSubMenu_Items[i]+'</a>&nbsp;&nbsp;&nbsp;&nbsp;');
		}
		document.write('      	</div></div></td>');
		document.write('      </tr>');
		document.write('    </table>');
		document.write('  </td>');
		document.write('</tr>');
	}
	else
	{
		document.write('<tr>');
		document.write('  <td bgcolor="#003366" height="1">');
		document.write('    <table width="100%" border="0" cellspacing="0" cellpadding="0">');
		document.write('      <tr>');
		document.write('	<td height="1"><div id="submenuLayer" style="position:static; left:2px; top:17px; z-index:1; background-color: #003366; layer-background-color: #003366; border: 1px none #000000; overflow: visible;"><div align="left">&nbsp;&nbsp;&nbsp;&nbsp;');
		document.write('      	</div></div></td>');
		document.write('      </tr>');
		document.write('    </table>');
		document.write('  </td>');
		document.write('</tr>');
	}
}

