function changeDiv(wdiv) {
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	thediv = document.getElementById(wdiv);
	if(sPage == "index.asp"){
	thediv.className = 'home';
	} else if (sPage == "about.asp"){
	thediv.className = 'about';
	} else if (sPage == "showcase.asp"){
	thediv.className = 'showcase';
	} else if (sPage == "other_products.asp"){
	thediv.className = 'other';
	} else if (sPage == "contact.asp"){
	thediv.className = 'contact';
	} else if (sPage == "careers.asp"){
	thediv.className = 'careers';
	}	
}  
