function ChangeClasse( Ligne )
{

	var sClassIndice = Ligne.className.substr(Ligne.className.length - 2, 2);
	
	if (sClassIndice == 'in')
	{
		Ligne.className = Ligne.className.substr(0, Ligne.className.length - 2) + 'out';
	}
	else
	{
		Ligne.className = Ligne.className.substr(0, Ligne.className.length - 3) + 'in';
	}

}

function ChangeURL ( sURL, sImg )
{

	if (sImg == 'CLUB')
	{
			window.document.location.replace("http://www.bcjorat.ch/spip/spip.php?id_rubrique=4&id_article=" + sURL + "&page=club");
	}
	else
	{
		if (sImg == '#1')
		{
			window.document.location.replace("http://www.bcjorat.ch/spip/spip.php?id_article=" + sURL + "&page=matchwi");
		}
		else
		{
			window.document.location.replace("http://www.bcjorat.ch/spip/spip.php?id_article=" + sURL + "&page=match");
		}
	}
}
