var img_haut = new Array()
var img_centre = new Array()
var img_gauche = new Array()
var num;

//  Déclaration des images de gauche //
	img_gauche[0] = "stgermain_1";
	img_gauche[1] = "mercurol_1";
//	img_gauche[2] = "steloi_1"; //
			
//  Déclaration des images du haut //
	img_haut[0] = "img_haut_1";
	img_haut[1] = "img_haut_2";
	img_haut[2] = "img_haut_3";
	img_haut[3] = "img_haut_4";
//	img_haut[4] = "img_haut_5";
//	img_haut[5] = "img_haut_6";
//	img_haut[6] = "img_haut_7";
//	img_haut[7] = "img_haut_8";

//  Déclaration des images du milieu //
	img_centre[0] = "home_stgermain";
	img_centre[1] = "home_mercurol";

function HighLightItemOver(item,num,nb){
	item.className='tableau_on';
	for (i=1;i<=nb;i++) {
		tmenu='cell_'+num+i;
		themenu=eval(tmenu);
		themenu.style.color='red';
	}
}

function HighLightItemOut(item,num,nb){
	item.className='tableau';
	for (i=1;i<=nb;i++) {	
		tmenu='cell_'+num+i;
		themenu=eval(tmenu);
		themenu.style.color='black';
	}
}

// Fonction de gestion des images aléatoiement //
function img_aleat(tableau,langue) {
	num =tableau.length;
	while (num>tableau.length-1) {
		num = Math.round(Math.random()*(tableau.length));
	}
	document.write("C:/Program Files/WebCopier/Download/jean23/_img src='../pics/default.htm" + langue + "default.htm" + tableau[num] + ".jpg' border=0><br>");
}

function popup(nomfichier,x,y) {
	var a;

	a=window.open(nomfichier, 'popup', 				'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=' + x + ',height=' + y);
}