function active()
{
	var shop = document.getElementById("shop");
	var artists = document.getElementById("artists");
	var infos = document.getElementById("infos");
	var contact = document.getElementById("contact");
	var compte = document.getElementById("compte");
	
		if(window.location.pathname == '/fr/explore.php')
		{
		shop.style.borderLeft="1px solid #000";
		shop.style.borderRight="1px solid #000";
		}
		
		if(window.location.pathname == '/fr/product.php')
		{
		shop.style.borderLeft="1px solid #000";
		shop.style.borderRight="1px solid #000";
		}
		
		if(window.location.pathname == '/fr/product_view.php')
		{
		shop.style.borderLeft="1px solid #000";
		shop.style.borderRight="1px solid #000";
		}
			
		if(window.location.pathname == '/fr/artists.php')
		{
		artists.style.borderLeft="1px solid #000";
		artists.style.borderRight="1px solid #000";
		}
		if(window.location.pathname == '/fr/contact.php')
		{
		contact.style.borderLeft="1px solid #000";
		contact.style.borderRight="1px solid #000";
		}
		if(window.location.pathname == '/fr/contact_retour.php')
		{
		contact.style.borderLeft="1px solid #000";
		contact.style.borderRight="1px solid #000";
		}
		
		
		if(mw_debug== 'yes')
		{
		shop.style.borderLeft="1px solid #000";
		shop.style.borderRight="1px solid #000";
		}
		
}