﻿function NavMarker(MyIndex)
{
    var DHTML = (document.getElementById);
    if (!DHTML) return false;
    
    var arrNavItems = new Array()
    
    arrNavItems.push("DivLeftNav01"); // 0  Home
    arrNavItems.push("DivLeftNav02"); // 1  About OCI
    arrNavItems.push("DivLeftNav03"); // 2  Construction Capabilities
    arrNavItems.push("DivLeftNav04"); // 3  Safety
    arrNavItems.push("DivLeftNav05"); // 4  Personnel
    arrNavItems.push("DivLeftNav06"); // 5  Construction Equipment
    arrNavItems.push("DivLeftNav07"); // 6  Office Locations
    arrNavItems.push("DivLeftNav08"); // 7  Signature Projects
    arrNavItems.push("DivLeftNav09"); // 8  Careers
    arrNavItems.push("DivLeftNav10"); // 9  Supplier / Subcontractor Registration
    arrNavItems.push("DivLeftNav11"); // 10 Contacts
	
	var MyNavObj = document.getElementById(arrNavItems[MyIndex])	
	MyNavObj.style.backgroundImage  = "url(images/NavButton_active.gif)";
	
	return true;
}
