

// (C) 2003 CodeLifter.com
// Free for all users, but leave in this  header

// =======================================
// set the following variables
// =======================================

// Set speed (milliseconds)
var speed1 = 10000000

// Specify the image files
var Pic1 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic1[0	] = 'http://godsdirectcontact.com/images/bkmore/	yellowandsun.jpg	'
Pic1[1	] = 'http://godsdirectcontact.com/images/bkmore/	yellowearth.jpg	'
Pic1[2	] = 'http://godsdirectcontact.com/images/bkmore/	yellow12.jpg	'
Pic1[3	] = 'http://godsdirectcontact.com/images/bkmore/	diamond.jpg	'
Pic1[4	] = 'http://godsdirectcontact.com/images/bkmore/	yellow8.jpg	'
Pic1[5	] = 'http://godsdirectcontact.com/images/bkmore/	yellow9.jpg	'
Pic1[6	] = 'http://godsdirectcontact.com/images/bkmore/	yellow5.jpg	'
Pic1[7	] = 'http://godsdirectcontact.com/images/bkmore/	yellow6.jpg	'
Pic1[8	] = 'http://godsdirectcontact.com/images/bkmore/	yellow2.jpg	'
Pic1[9	] = 'http://godsdirectcontact.com/images/bkmore/	yellow3.jpg	'
Pic1[10	] = 'http://godsdirectcontact.com/images/bkmore/	yellow4.jpg	'
Pic1[11	] = 'http://godsdirectcontact.com/images/bkmore/	yellow13.jpg	'
Pic1[12	] = 'http://godsdirectcontact.com/images/bkmore/	yellow14.jpg	'
Pic1[13	] = 'http://godsdirectcontact.com/images/bkmore/	yellow10.jpg	'
Pic1[14	] = 'http://godsdirectcontact.com/images/bkmore/	yellow11.jpg	'
Pic1[15	] = 'http://godsdirectcontact.com/images/bkmore/	sun3.jpg	'
Pic1[16	] = 'http://godsdirectcontact.com/images/bkmore/	angel3.jpg	'
Pic1[17	] = 'http://godsdirectcontact.com/images/bkmore/	yellow5.jpg	'
Pic1[18	] = 'http://godsdirectcontact.com/images/bkmore/	goldenrightlight.jpg	'


// =======================================
// do not edit anything below this line
// =======================================

var s
var k = 0
var h = Pic1.length



k = Math.floor(Math.random() * 18); 
onload=function runBGSlideShow1(){
   if (document.body){
   document.body.background = Pic1[k];
   k= k + 1
   
   if (k > (h-1)) k=0
   s = setTimeout('runBGSlideShow1()', speed1)
   k = Math.floor(Math.random() * 18); 
   }
}

