/* Musique au pif par HCarbone 2004
   http://le.chalet.du.miel.free.fr
*/

var currentdate = 0
var themusikopif = " "
var JavascriptCenter = 0
function StringArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
titre = new StringArray(7)
titre[0]  = 'Sons/PloumChacha.mp3'
titre[1]  = 'Sons/PloumClecle.mp3'
titre[2]  = 'Sons/PloumJuju.mp3'
titre[3]  = 'Sons/PloumLesTrois.mp3'
titre[4]  = 'Sons/PloumLesTrois2.mp3'
titre[5]  = 'Sons/Rires.mp3'
titre[6]  = 'Sons/Rires2.mp3'
aleatoire = 60 / titre.length
function musikopif() {
currentdate = new Date()
JavascriptCenter = currentdate.getSeconds()
adJavascriptCenter = Math.floor(JavascriptCenter/aleatoire)
JavascriptCenter = adJavascriptCenter
themusikopif = titre[JavascriptCenter]
return (themusikopif)
}
document.write("<BGSOUND src="+musikopif()+" Width=1 Height=1 autostart=true  hidden=true loop=infinite>");