// background music

<!--
var sample1="/clavinovafestival/audio/BackgroundMusic1.mp3"
var sample2="/clavinovafestival/audio/BackgroundMusic2.mp3"
var sample3="/clavinovafestival/audio/BackgroundMusic3.mp3"
var sample4="/clavinovafestival/audio/BackgroundMusic4.mp3"
var sample5="/clavinovafestival/audio/BackgroundMusic5.mp3"
var sample6="/clavinovafestival/audio/BackgroundMusic6.mp3"
var x=Math.round(Math.random()*5)
if (x==0) x=sample1
else if (x==1) x=sample2
else if (x==2) x=sample3
else if (x==3) x=sample4
else if (x==4) x=sample5
else if (x==5) x=sample6
else x=sound6
if (navigator.appName=="Microsoft Internet Explorer")
document.write('<bgsound src='+'"'+x+'"'+' loop="false">')
else 
document.write('<embed src='+'"'+x+'"'+'hidden="true" border="0" width="20" height="20" autostart="true" loop="false">')
//-->

