doFocus = true;

function toMenu()
{	
	stopAnimation();
	annulerSurbrillance();

	//tableau d'indice de liens
	handiLinks = genHandiLinks();
	
	startAnimation(handiLinks);
}


function entrerPara(para_id)
{
	annulerSurbrillance();
	var handiLinks = new Array();
	for (i = 0; i < document.links.length; i++)
	{
		if (document.links[i].className == "lienToolBox")
		{
			regex = new RegExp("^" + para_id + "-[0-9]+$", "")
			
			if ( regex.test(document.links[i].id))
			{
				handiLinks.push(i);
			}
		}
	}
	
	if (handiLinks != null && handiLinks.length > 1)
	{
		startAnimation(handiLinks);
	}
}


/**
	Debug variable
*/
var skip = false;

