// JavaScript Document
var x;
var mycars = new Array(
	"67", "index.html", "Home",
	"60", "Company-Info.html", "About Us",
	"130", "training-scheduled.html", "Training Schedule",
	"75", "ListClients.html", "Our Clients",
	"90", "Publications-Downloads.html", "Downloads",
	"105", "CareerAssistance.html", "Career Assistance",
	"97", "Partners.html", "Partners",
	"98", "Contact-Us.html", "Contact Us"	
);

document.write("<TABLE WIDTH=\"800\" height=\"15\" BORDER=0 CELLPADDING=0 CELLSPACING=0>");
document.write("<TR>");
x = 0;
while(x < mycars.length)
{
	document.write("<TD ALIGN=CENTER width=" + mycars[x]);
	x = x + 1;
	document.write("><a href=\"" + mycars[x] + "\" class=\"topmenu\">" );
	x = x + 1;
	document.write(mycars[x] + "</a></TD>");
	document.write("<td width=1></td>");
	x = x + 1;
}
document.write("</TR>");
document.write("</TABLE>");