var init = false;	
var mp3 = "summersamba.mp3,georgia.mp3,sodancosamba.mp3,nightandday.mp3,ourlove.mp3,teafortwo.mp3,cottontail.mp3,jardindhiver.mp3";
var titre = "Summer Samba,Georgia on my mind,So danco samba,Night and day,Our love is here to stay,Tea for two,Cottontail,Jardin d'hiver";
var nbTitre = 8;

function thisMovie(movieName) {
if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  } else {
   return window.document[movieName]
  }
}
function createJSFCommunicatorObject(playerObj){
		fc = new JSFCommunicator(playerObj);	
}
function runTestCode(){
		fc.callFunction("_level0","setinfo",[mp3,titre]);
}
function play(num) {
   if(init == false){
		runTestCode()
		init = true;
   }
	fc.callFunction("_level0","titre_fct",[num]);
		for(i=0;i<nbTitre;i++){
		document.getElementById("t"+i).style.color="#ffffff";
	}
	document.getElementById("t"+num).style.color="#E0001A";
}
function formation(num){
	if(num == 3){
		document.getElementById("over").style.backgroundImage = "url(img/trio-jazz-band.jpg)"; 
	}
	if(num == 4){
		document.getElementById("over").style.backgroundImage = "url(img/jazz-quartet.jpg)"; 
	}
	if(num == 5){
		document.getElementById("over").style.backgroundImage = "url(img/quintet-jazz.jpg)"; 
	}
}
function parseFlash(data){
	for(i=0;i<nbTitre;i++){
		document.getElementById("t"+i).style.color="#ffffff";
	}
		document.getElementById("t"+data).style.color="#E0001A";
}