/* Script to pick a random home page music selection */
/* Music files are named: opening_musicX.swf */
var music=4;	/* Number of possible selections */
var random_music= Math.round(Math.random()*(music-1))+1;
/* Write out the flash embed statement */
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=1 HEIGHT=1> <PARAM NAME=movie VALUE="opening_music' + random_music + '.swf"> <PARAM NAME=loop VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#606A4F> <EMBED src="opening_music' + random_music + '.swf" loop=false quality=high bgcolor=#606A4F  WIDTH=1 HEIGHT=1 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED> </OBJECT>');
