/* this script controls the selected state of the top horizontal navigation */

<!--
	var curLocation = location.href.toLowerCase();
	
		if (curLocation.indexOf('/products') >= 0) 
		{
			document.getElementById('htnav2').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link2').className = 'navSelected';
		}
		
		else if (curLocation.indexOf('/takethetour') >= 0) 
		{
			document.getElementById('htnav3').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link3').className = 'navSelected';
		}
		
		else if (curLocation.indexOf('/governmentstimulus') >= 0) 
		{
			document.getElementById('htnav4').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link4').className = 'navSelected';
		}

		else if (curLocation.indexOf('/resource') >= 0) 
		{
			document.getElementById('htnav5').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link5').className = 'navSelected';
		}
		
		else if (curLocation.indexOf('/about') >= 0) 
		{
			document.getElementById('htnav6').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link6').className = 'navSelected';
		}

		else if (curLocation.indexOf('/contact') >= 0) 
		{
			document.getElementById('htnav7').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link7').className = 'navSelected';
		}

		else if (curLocation.indexOf('buyers/') >= 0 || location.href.indexOf('about/') >= 0 || location.href.indexOf('careers/') >= 0 || location.href.indexOf('contact.aspx') >= 0 || location.href.indexOf('sitemap.aspx') >= 0 || location.href.indexOf('privacy.aspx') >= 0 || location.href.indexOf('terms.aspx') >= 0) 
		{
			document.getElementById('htnav1').style.borderBottom = '3px #ffffff solid';
		}
		
		else 
		{
			document.getElementById('htnav1').style.borderBottom = '3px #CA6332 solid';
			document.getElementById('link1').className = 'navSelected';
		}
		
function loginSubmit() {
			document.getElementById('form1').action = 'https://inside.onvia.com/pac/login.aspx';		
}

/* this script controls the placement of the customer login according to authenticated user status */

if (!document.getElementById('ctl00_SPNavigation_ctl00_pnlFlex')) {
	document.getElementById('loginBox').style.display = 'block';
}


//-->
