<!--
//this is the directory that contains the midi files
// don't forget the trailing slash at the end of  the dir name
var MidiDir = "http://www.brokendetector.com/midi/"
//the names of the midi (or other audio) files in the directory MidiDir
var SongList = new Array(
"backinthesaddle.mid",
"cotton.mid",
"deep_tex.mid",
"dueling.mid",
"jambalay.mid",
"grits.mid",
"elephantwalk.mid",
"elpaso.mid",
"goodbad.mid",
"prettywm.mid",
"entrtnr.mid",
"grits.mid",
"grnberet.mid",
"hapydays.mid",
"musicbox.mid",
"laredo.mid",
"tequila.mid",
"spanflea.mid",
"taxi.mid",
"yellowrose.mid",
"ilovehowyouloveme.mid",
"zorba.mid",
"cattlecall.mid",
"gatedoom.mid",
"lonesom2.mid",
"lonlybul.mid",
"madeusa.mid",
"mexicanshuffle.mid",
"myway.mid",
"paproses.mid",
"senjourn.mid",
"shenando.mid",
"southoftheborder.mid",
"tastehny.mid",
"tenwaltz.mid",
"underdog.mid",
"yellowrose.mid"
);
var intSongs = SongList.length;  // Size of the array.
var strPlaySong = SongList[ Math.ceil( Math.random() * intSongs)-1];
// -1 because arrays start at 0.
document.write('<EMBED src="' + MidiDir+ strPlaySong + '" width=145 height=40 autostart=true loop=true hidden=true>');
// debug -    document.write( Math.ceil( Math.random() * intSongs)-1);
// -->
