song = new Array(3);
title = new Array(3);
song[0] ='warmfuzzies.mp3'
song[1] ='piano.mp3'
song[2] ='orangeoctober.mp3'

title[0] = 'The Warm Fuzzies'
title[1] = 'Piano'
title[2] = 'Orange October'

index = Math.floor(Math.random() * song.length);
// document.write("<DL>\n");
document.write("<EMBED SRC="+song[index]+" width=2 height=0 autostart=true loop=true BGCOLOR='#000000'");
// document.write(' TEXT="#FFFFFF">');
// document.write("<BR>");
// document.write("you listening to: ");
// document.write("<font size=4 color=red>");
// document.write(title[index]);
// document.write("</font>")
//document.write("</DL>\n");
