// JavaScript Document

/***********************************************
* Random Video Script- ©
* Author: Raymond Angana
* rangana in AHFB2000.com
* modified last May 2, 2008
* This notice MUST stay intact for legal use
***********************************************/
var v1,v2,v3,v4,v5,v6,rangVideo;
/********************************Edit this part for the videos*********************************/
v1='<embed autostart="true" height="50" width="200" loop="true" src="nw13033.mp3"></embed>';

v2='<embed autostart="true" height="50" width="200" loop="true" src="redemption337.MP3"></embed>';

v3='<embed autostart="true" height="50" width="200" loop="true" src="gfg6843.MP3"></embed>';

v4='<embed autostart="true" height="50" width="200" loop="true" src="Elevator music - Piano Jazz - Soft Winds.mp3"></embed>';

v5='<embed autostart="true" height="50" width="200" loop="true" src="415-billie_holiday-am_i_blue.mp3"></embed>';

v6='<embed autostart="true" height="50" width="200" loop="true" src="sc6401.mp3"></embed>';
/********************************************************************************************/
rangVideo=[v1,v2,v3,v4,v5,v6]; // This depends on the number of videos you have.
window.onload=function() 
{
   rangProc=Math.floor(Math.random()*rangVideo.length);
   document.getElementById('display').innerHTML=rangVideo[rangProc];
 }


