/****** You Are Here ******/
function onbodyload() {
		youarehere();
		}
		
window.onload=onbodyload;
	
	
function youarehere() {
	var path = window.location.pathname;
	
			/****** Header ******/
		if (path.slice(0,20) == '/customManufacturing')
			document.getElementById('customManufacturing').className='topNav';

if (path.slice(0,20) == '/proprietaryProducts')
			document.getElementById('proprietaryProducts').className='topNav';
		if (path.slice(0,10) == '/atAGlance')
			document.getElementById('atAGlance').className='topNav';
		if (path.slice(0,10) == '/contactUs')
			document.getElementById('contactUs').className='topNav';
			
	var subMenu=document.getElementById("subMenu");
	if (subMenu) {
		var links=subMenu.getElementsByTagName("A");
		for (var i=0; i<links.length; i++) {
			var link=links[i];
			if (path.indexOf(link.href.replace(/^http:\/\/[^\/]+/,''))>=0) {
				link.className='current';
			}
		}
	}
}