// work out the file name
sLocation = window.location.href;
aLocationParts = sLocation.split("/");
sFileName = aLocationParts[aLocationParts.length-1]; // Last element

// work out if it is any of the sections with sub nav
iAdjustPos = sFileName.indexOf('adjustit_');
iCompanyPos = sFileName.indexOf('company_');

// reverse thinking here for best case default
// if we can't find the section then turn it off
if (iAdjustPos < 0) {
	oSubNav = document.getElementById('subNavAdjustit');
	oSubNav.style.display = 'none';	
}

// if we can't find the section then turn it off
if (iCompanyPos < 0) {
	oSubNav = document.getElementById('subNavCompany');
	oSubNav.style.display = 'none';	
}

