

function loadMenu(){

var menus = Array();
menus[0] = "Services,services.html";
menus[1] = "Solutions,solutions.html";
menus[2] = "Technology,tech.html";
menus[3] = "About Us,aboutus.html";
menus[4] = "Career,career.html";
menus[5] = "Resource Center,resource.jsp";

	var tableRows = document.getElementById('top_menu');
	
	var lastRow = tableRows.rows.length;
	var iteration = lastRow;
	var j = -1;	
	for(i=0; i<menus.length;i++){
	
	var row = tableRows.insertRow(++j);
	
	var subMenus=menus[i].split(",");
	
	var newHLink = document.createElement("a");
	newHLink.name = "enn"+iteration;
	newHLink.setAttribute("href", subMenus[1]);
	newHLink.className="menulink";
	var label = document.createTextNode(subMenus[0]);
	newHLink.appendChild(label);
	
	var cell = row.insertCell(0);
	cell.appendChild(newHLink);
	cell.height="20px";
	// Main menu bar

	var row2 = tableRows.insertRow(++j);
	
	var cell2 = row2.insertCell(0);
	cell2.id="aa"+iteration;
	cell2.className="top_menu_td";
	cell2.appendChild(document.createTextNode(""));

	}
}
window.onload=loadMenu;

