<!-- Zufällige Hintergrundmusik -->

var hgm1="http://members.libreopinion.com/jeanne-d-arc/musica/Adeste_fideles_Alfredo_Kraus_1991.mp3"
var hgm2="http://members.libreopinion.com/jeanne-d-arc/musica/Panis_angelicus_Alfredo_Kraus_1991.mp3"
var hgm3="http://members.libreopinion.com/jeanne-d-arc/musica/Cantemos_al_amor_de_los_amores.mp3"
var hgm4="http://members.libreopinion.com/jeanne-d-arc/musica/Christus_vincit_Christus_regnat.mp3"
var hgm5="http://members.libreopinion.com/jeanne-d-arc/musica/Panis_angelicus_Alfredo_Kraus_1991.mp3"
var hgm6="http://members.libreopinion.com/jeanne-d-arc/musica/Salve_Regina.mp3"
var hgm7="http://members.libreopinion.com/jeanne-d-arc/musica/Ave_Maria_Alfredo_Kraus_1991.mp3"

var x=Math.round(Math.random()*6)

if (x==0) x=hgm1
else if (x==1) x=hgm2
else if (x==2) x=hgm3
else if (x==3) x=hgm4
else if (x==4) x=hgm5
else if (x==5) x=hgm6
else x=hgm7

if (navigator.appName=="Microsoft Internet Explorer")
  document.write('<bgsound src='+'"'+x+'"'+' loop="-1">')
else
  document.write('<embed src='+'"'+x+'"'+'hidden="true" volume="0" autostart="true" loop="true">')

