// JavaScript Document

//##################################################
//Fonction allume lien active
//################################################## 
function checkActive()
{
	var listeLien = $$('a');
	if (window.location.href.substr(location.href.length - 1, 1) == '/')
	{
		var loc = window.location.href + ''; 
	}
	else
	{
		var loc = window.location.href;
	}
	for(var i=0; i < listeLien.length; i++)
	{
		if (listeLien[i].href == loc)
		{
			listeLien[i].setAttribute("class", "actif");
			listeLien[i].setAttribute("className", "actif");
		}
	}
}

function voirSsCategory(ici,nom){
	
	

	 window.location=ici;
 }

//##################################################
//Initialisation des menus de la page a voir a faire
//##################################################

try{
	    window.onload=function()
	    {
	        checkActive();
	       
	    }
	}
	catch(e){
	    window.attachEvent("onload", checkActive);
	    }

