//Permet d'observer les clicks pour les flashs, ainsi pas besoin de lien
function observ_flash(){
	Event.observe('flash1', 'click', function repere() { loadOverview('flash1'); });
	Event.observe('flash2', 'click', function repere() { loadOverview('flash2'); });
	Event.observe('flash3', 'click', function repere() { loadOverview('flash3'); });
	Event.observe('flash4', 'click', function repere() { loadOverview('flash4'); });
	Event.observe('flash5', 'click', function repere() { loadOverview('flash5'); });
};

//Télécharge le bon flash selon le click, plusieurs param peuvent être passé
function loadOverview(id) {
		var d = id;
		if (d=="flash1"){
			myLightWindow.activateWindow({
				href: 'flv/gamelle.swf', 
				title:"Michael A... Un combat contre moi-même !",
				width: 320,
				height: 240
			});
		}else if(d=="flash2"){
			myLightWindow.activateWindow({
				href: 'flv/mondolio.swf', 
				title:"Un K.O. de folie !",
				width: 320,
				height: 240
			});
		}else if(d=="flash3"){
			myLightWindow.activateWindow({
				href: 'flv/Tumpai.swf', 
				width: 320,
				height: 240,
				title:"Les acrobaties de Benga ....1er Dan"
			});
		}else if(d=="flash4"){
			myLightWindow.activateWindow({
				href: 'flv/Entr_2006_03.swf', 
				width: 384,
				height: 288,
				title:"Entrainement au calmette !!!"
			});
		}else if(d=="flash5"){
			myLightWindow.activateWindow({
				href: 'flv/nice_tv.swf', 
				width: 320,
				height: 240,
				title:"NiceTV Sport"
			});
		}else{
			alert("Le fichier Flash n'a pas &eacute;t&eacute; retrouv&eacute;. Veuillez contacter le webmaster.");
		}
}
	
//Passe les évenements
Event.observe(window, 'load', observ_flash);