// JavaScript to interpolate random images into a page. 
var ic = 20;


  
// Number of alternative images 
var xoxo = new Array(ic); 
// Array to hold filenames 

xoxo[0] = "/files/hompage_backgrounds/1208-hp-ss-01.jpg"; 
xoxo[1] = "/files/hompage_backgrounds/1208-hp-ss-05.jpg"; 
xoxo[2] = "/files/hompage_backgrounds/1208-hp-ss-45.jpg"; 
xoxo[3] = "/files/hompage_backgrounds/1208-hp-ss-08.jpg"; 
xoxo[4] = "/files/hompage_backgrounds/1208-hp-ss-11.jpg"; 
xoxo[5] = "/files/hompage_backgrounds/1208-hp-ss-14.jpg"; 
xoxo[6] = "/files/hompage_backgrounds/1208-hp-ss-22.jpg"; 
xoxo[7] = "/files/hompage_backgrounds/1208-hp-ss-37.jpg"; 
xoxo[8] = "/files/hompage_backgrounds/1208-hp-ss-31.jpg"; 
xoxo[9] = "/files/hompage_backgrounds/1208-hp-ss-38.jpg"; 
xoxo[10] = "/files/hompage_backgrounds/0309-hp-ss-11.jpg"; 
xoxo[11] = "/files/hompage_backgrounds/0309-hp-ss-10.jpg"; 
xoxo[12] = "/files/hompage_backgrounds/0309-hp-ss-09.jpg"; 
xoxo[13] = "/files/hompage_backgrounds/0309-hp-ss-08.jpg"; 
xoxo[14] = "/files/hompage_backgrounds/0309-hp-ss-07.jpg"; 
xoxo[15] = "/files/hompage_backgrounds/0309-hp-ss-06.jpg"; 
xoxo[16] = "/files/hompage_backgrounds/0309-hp-ss-05.jpg"; 
xoxo[17] = "/files/hompage_backgrounds/0309-hp-ss-04.jpg"; 
xoxo[18] = "/files/hompage_backgrounds/0309-hp-ss-02.jpg"; 
xoxo[19] = "/files/hompage_backgrounds/0309-hp-ss-01.jpg"; 


function pickRandom(range) 
{ 
	if (Math.random) return Math.round(Math.random() * (range-1)); 
	else { var now = new Date(); 
	return (now.getTime() / 1000) % range; } 
} 

// Write out an IMG tag, using a randomly-chosen image name. 
var choice = pickRandom(ic); 




