function changeSom(id){
	var club = [new Array("La coupe de France de robotique","cdf_robot.html"), new Array("Présentation du club","pres.html"), new Array("Equipe 2009","eq2009.html")];
	var coupe2009 = [];
	var histo = [new Array("Coupe 2008","08.html"), new Array("Coupes 2006 - 2007","06_07.html"), new Array("Coupes 2004 - 2005","04_05.html"), new Array("Coupes 2002 - 2003","02_03.html"), new Array("Coupes 2000 - 2001","00_01.html"), new Array("Coupes 1998 - 1999","98_99.html")];
	var palmares = [];
	var sponsors = [];
	var sommaire = [club, coupe2009, histo, sponsors, palmares];
	
	html = "";
	
	for (i=0; i<sommaire[id].length; i++){
		html += '<li><a href="'+sommaire[id][i][1]+'">'+sommaire[id][i][0]+'</a></li>';	
	}
	
	if (document.getElementById){
		document.getElementById("menu").innerHTML = html;
	}
	else{
		document.all["menu"].innerHTML = html;
	}
}

var nbAppel = 0;

function ajoutFichier(num){
	if (document.getElementById){
		div = document.getElementById("fichiers");
	}
	else{
		div = document.all["fichiers"];
	}
	
	div.innerHTML = '<div id="fichiers"></div><input type="file" name="fichiers[]" /> <b>Code : ##' + num + '##</b><br/>';

	div.id = "fichiers" + num;
}

