function active()
{
	var homepage = document.getElementById("homepage");
	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/index.php')
		{
		homepage.style.color="#FFFFFF";
		homepage.style.backgroundColor="#000000";
		}
		
		if(window.location.pathname == '/fr/')
		{
		homepage.style.color="#FFFFFF";
		homepage.style.backgroundColor="#000000";
		}
		
		if(window.location.pathname == '/fr/explore.php')
		{
		shop.style.color="#FFFFFF";
		shop.style.backgroundColor="#000000";
		}
		
		if(window.location.pathname == '/fr/product.php')
		{
		shop.style.color="#FFFFFF";
		shop.style.backgroundColor="#000000";

		}
		
		if(window.location.pathname == '/fr/product_view.php')
		{
		shop.style.color="#FFFFFF";
		shop.style.backgroundColor="#000000";

		}
			
		if(window.location.pathname == '/fr/artists.php')
		{
		artists.style.color="#FFFFFF";
		artists.style.backgroundColor="#000000";

		}
		if(window.location.pathname == '/fr/contact.php')
		{
		contact.style.color="#FFFFFF";
		contact.style.backgroundColor="#000000";

		}
		if(window.location.pathname == '/fr/contact_retour.php')
		{
		contact.style.color="#FFFFFF";
		contact.style.backgroundColor="#000000";

		}
		
		if(window.location.pathname == '/fr/infos.php')
		{
		infos.style.color="#FFFFFF";
		infos.style.backgroundColor="#000000";

		}
		
		if(window.location.pathname == '/fr/account.php')
		{
		compte.style.color="#FFFFFF";
		compte.style.backgroundColor="#000000";

		}
		
		if(window.location.pathname == '/fr/identification.php')
		{
		compte.style.color="#FFFFFF";
		compte.style.backgroundColor="#000000";
		}
		
		if(window.location.pathname == '/fr/mes-coordonnees.php')
		{
		compte.style.color="#FFFFFF";
		compte.style.backgroundColor="#000000";
		}
		
		if(window.location.pathname == '/fr/mes-commandes.php')
		{
		compte.style.color="#FFFFFF";
		compte.style.backgroundColor="#000000";
		}
		
		if(mw_debug== 'yes')
		{
		shop.style.color="#FFFFFF";
		shop.style.backgroundColor="#000000";
		}
		
}