<!--
/*
Random Clickable Image + Text Script by Eddie Boyd <eddie@saltire.co.uk>
April 2004
You can add new pictures and text by adding new lines that start with images[number]
and text[number]
*/
function playtune(){
var tunes=new Array()
//specify random images below. You can have as many as you wish.
tunes[1]='untiltear'
tunes[2]='sweetdreams'
tunes[3]='rideaway'
tunes[4]='hearttexas'
tunes[5]='tennesee-1'
tunes[6]='sanantrose'
//specify corresponding text below
var ry=Math.floor(Math.random()*tunes.length)
if (ry==0)
ry=1
document.write('<noembed><BGSOUND SRC="/music/'+tunes[ry]+'.mid"></noembed><EMBED SRC="/music/'+tunes[ry]+'.mid" hidden="true" autostart="true">')
}
//-->