// JavaScript Document
<!--
var Fond=new CreerTabSon();
Fond.Add("musique/mw-summe.mid");
Fond.Add("musique/Waltz for Debby.mid");
Fond.Add("musique/When_sunny_gets_blue.mid");
Fond.Add("musique/When I Fall in Love.mid");
Fond.Add("musique/You Look Good To me.mid");

function CreerTabSon() {
	this.nb=0
	this.Add=AddSon;
	this.Choix=ChoixSon;
}
function AddSon(fichier,description) {
	var son=new Object;
	son.fichier=fichier;
	this[this.nb]=son;
	this.nb++;
}
function ChoixSon() {
	return Math.round(Math.random(1)*(this.nb-1));
}

function JouerSon() {
	var nb=Fond.Choix();
	document.write("<EMBED SRC='"+Fond[nb].fichier+"' AUTOSTART='TRUE' HIDDEN='TRUE' LOOP='TRUE'>");
}
//-->
