

// (C) 2003 CodeLifter.com
// Free for all users, but leave in this  header

// =======================================
// set the following variables
// =======================================

// Set speed (milliseconds)
var speed1 = 100000

// 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://www.suprememastertv.net/index_files/0131.jpg'
Pic1[1] = 'http://www.suprememastertv.net/index_files/grassland.jpg'
Pic1[2] = 'http://www.suprememastertv.net/index_files/ocean.jpg'
Pic1[3	] = 'http://www.suprememastertv.net/index_files/	mountain.jpg	'
Pic1[4	] = 'http://www.suprememastertv.net/index_files/	oceanlight.jpg	'
Pic1[5	] = 'http://www.suprememastertv.net/index_files/	deepsea.jpg	'
Pic1[6	] = 'http://www.suprememastertv.net/index_files/	sky1.jpg	'
// =======================================
// do not edit anything below this line
// =======================================

var s
var k = 0
var h = Pic1.length



k = Math.floor(Math.random() * 6); 
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() * 6); 
   }
}


