ppath=location.pathname;

if((ppath.search("/about") != -1) || (ppath.search("/contacts") != -1))
{
	document.getElementById("m_about").style.display="inline";
}

if(ppath.search("/team/") != -1)
{
	document.getElementById("m_team").style.display="inline";
}

if(ppath.search("/products/") != -1)
{
	document.getElementById("m_products").style.display="inline";
}
