
function do_nav_html(pagetitle) 
{	
	var testarray = new Array();
	testarray[0] = new Array("Web Services","/pages/webservices/", "Overview", "/pages/webservices/", "Hosting Solutions", "/pages/webservices/hosting.php", "Domain Registration", "/webservices/domainRegister.php", "Consultancy", "/webservices/consultancy.php");
    testarray[1] = new Array("Packages", "/packages/", "Overview", "/packages/", "Home Plans", "/packages/homePlans.php", "SMB Plans", "/packages/smbPlans.php", "SME Plans", "/packages/smePlans.php", "Enterprise Plans", "/packages/enterprise.php", "Enterprise Premium", "/packages/entPremium.php");
    testarray[2] = new Array("Technology", "/technology/", "Overview", "/technology/","Solutions","/technology/solutions.php");
    testarray[3] = new Array("Clients", "/clients/", "Our Clients", "/clients/", "Developer Programs", "/client/developer.php", "Reseller Programs", "/clients/resellerProg.php/","Become a Reseller", "/clients/reseller.php");
    testarray[4] = new Array("Support", "/support/", "Support Home", "/support/", "Technical FAQ", "/support/techsupport/", "Sales FAQ", "/support/custsupport/", "User Manuals", "/support/usermanuals/", "Support Ticket", "/support/ticket/", "Forum", "/bbs/");
    testarray[5] = new Array("Company", "/company/profile.htm", "Profile", "/company/profile.htm", "History", "/company/history.htm", "Brochure", "/company/brochure.htm", "Location", "/company/location.htm", "Contact", "/company/contact.htm", "Jobs", "/company/jobs.htm");

	var HTMLCode = "";
	HTMLCode += "<ul class=\"contain\">";
	for (i=0; i<testarray.length; i++)
	{  
	   if (testarray[i][0] == pagetitle) 
	   {
	       if (testarray[i][0] == 'Products')
	       {
               HTMLCode += "<li class=\"active\"><a href=\"" + testarray[i][1] + "\" class=\"toppernav\">" + testarray[i][0] + "</a><ul class=\"products\">";
	       } else {
		       HTMLCode += "<li class=\"active\"><a href=\"" + testarray[i][1] + "\" class=\"toppernav\">" + testarray[i][0] + "</a><ul>";
           }

	   } else {
		   if (testarray[i][0] == 'Products')
		   {	
	           HTMLCode += "<li class=\"top\"><a href=\"" + testarray[i][1] + "\">" + testarray[i][0] + "</a><ul class=\"products\">";
		   } else {
               HTMLCode += "<li class=\"top\"><a href=\"" + testarray[i][1] + "\">" + testarray[i][0] + "</a><ul>";
		   }
	   }

	   for (j=1; j<testarray[i].length/2; j++)
	   {
		  HTMLCode += "<li class=\"\"><a href=\"" + testarray[i][2*j+1] + "\">" + testarray[i][2*j] + "</a></li>";
	   }
	   HTMLCode += "</ul></li>";
	}
	HTMLCode += "</ul>";
	//document.write (HTMLCode); 
	if (navigator.appName=='Microsoft Internet Explorer') 
	{
       pageHeaderNav.innerHTML=HTMLCode;
	} else {
       document.write (HTMLCode)
	}
}