<!--
ids = new Array(7);
txt = new Array(7);

ids[0] = "accueil";
txt[0] = "Accueil";
ids[1] = "club";
txt[1] = "Horaires/Tarifs";
ids[2] = "tamura";
txt[2] = "Tamura%20Shihan";
ids[3] = "acces";
txt[3] = "Acc%E8s/Structure";
ids[4] = "liens";
txt[4] = "Liens";
ids[5] = "photos";
txt[5] = "Photos";
ids[6]= "documents";
txt[6] = "Documents";
ids[7] = "pressbook";
txt[7] = "Pressbook";

en_cours="";

function clic(lbl)
{
	if (en_cours != "")
		outforce(en_cours);
	overselect(lbl);
	en_cours=lbl;
}

function over(lbl)
{
	curr = -1;
	for(i=0;i<ids.length;i++)
		if(ids[i]==lbl)
			curr = i;
	
	if(en_cours != lbl)
	{
		im = document.getElementById(lbl);
		im.src = "button2.php?text=" + txt[curr];
	}
}

function overselect(lbl)
{
        curr = -1;
        for(i=0;i<ids.length;i++)
                if(ids[i]==lbl)
                        curr = i;

        im = document.getElementById(lbl);
        im.src = "button3.php?text=" + txt[curr];
}

function out(lbl)
{
        curr = -1;
        for(i=0;i<ids.length;i++)
                if(ids[i]==lbl)
                        curr = i;

	if(en_cours != lbl)
	{
		im = document.getElementById(lbl);
		im.src = "button1.php?text=" + txt[curr];
	}
}

function outforce(lbl)
{
        curr = -1;
        for(i=0;i<ids.length;i++)
                if(ids[i]==lbl)
                        curr = i;

	im = document.getElementById(lbl);
	im.src = "button1.php?text=" + txt[curr];
}

function checkpage()
{
	lbl=top.frames[1].document.location.href;

	act=lbl.substr(lbl.indexOf("=")+1, lbl.length);

	if(en_cours!=act)
		clic(act);

	setTimeout("checkpage()", 1000);
}
