// 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,rangVideo;
/********************************Edit this part for the videos*********************************/

v1='<embed autostart="true" height="30" width="200" loop="true" src="Gotta Tell It.mp3"></embed><marquee behavior="scroll" direction="left" bgcolor="000000"><font face="arial black" color="ffffff">Now Playing: Gotta Tell It/ Lead vocals our very own Princess Brooks</font></marquee>';

v2='<embed autostart="true" height="30" width="200" loop="true" src="nw13033.mp3"></embed><marquee behavior="scroll" direction="left" bgcolor="000000"><font face="arial black" color="ffffff">Now Playing: No Weapon / Roland Gresham feat. our very own Lynn Mears</font></marquee>';

v3='<embed autostart="true" height="30" width="200" loop="true" src="tad.mp3"></embed><marquee behavior="scroll" direction="left" bgcolor="000000"><font face="arial black" color="ffffff">Now Playing: Hot or Cold / TGC (Our Very own TAD Yates is first)</font></marquee>';

v4='<embed autostart="true" height="30" width="200" loop="true" src="01 Ride on King Jesus lo.mp3"></embed><marquee behavior="scroll" direction="left" bgcolor="000000"><font face="arial black" color="ffffff">Now Playing: Ride on King Jesus / Our Family</font></marquee>';

v5='<embed autostart="true" height="30" width="200" loop="true" src="02 Remember lo.mp3"></embed><marquee behavior="scroll" direction="left" bgcolor="000000"><font face="arial black" color="ffffff">Now Playing: Remember / Our Family</font></marquee>';


/********************************************************************************************/
rangVideo=[v1,v2,v3,v4,v5,]; // 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];
 }

