// This script was supplied free by Hypergurl 
// http://www.hypergurl.com 

<!-- 
// JavaScript to interpolate random images into a page.
 
var ic = 49; // Number of alternative images 
var xoxo = new Array(ic); 
// Array to hold filenames 
xoxo[0] = "images/jewel1.gif"; 
xoxo[1] = "images/jewel2.gif"; 
xoxo[2] = "images/jewel3.gif"; 
xoxo[3] = "images/jewel4.gif"; 
xoxo[4] = "images/jewel5.gif"; 
xoxo[5] = "images/jewel6.gif"; 
xoxo[6] = "images/jewel7.gif"; 
xoxo[7] = "images/jewel8.gif"; 
xoxo[8] = "images/jewel9.gif"; 
xoxo[9] = "images/jewel10.gif"; 
xoxo[10] = "images/jewel11.gif"; 
xoxo[11] = "images/jewel12.gif"; 
xoxo[12] = "images/jewel13.gif"; 
xoxo[13] = "images/jewel14.gif"; 
xoxo[14] = "images/jewel15.gif"; 
xoxo[15] = "images/b1.gif"; 
xoxo[16] = "images/b2.gif"; 
xoxo[17] = "images/b3.gif"; 
xoxo[18] = "images/b4.gif"; 
xoxo[19] = "images/b5.gif"; 
xoxo[20] = "images/e1.gif"; 
xoxo[21] = "images/e2.gif"; 
xoxo[22] = "images/ac1.gif"; 
xoxo[23] = "images/ac2.gif"; 
xoxo[24] = "images/ac3.gif"; 
xoxo[25] = "images/ac4.gif"; 
xoxo[26] = "images/c1.gif"; 
xoxo[27] = "images/c2.gif"; 
xoxo[28] = "images/c3.gif"; 
xoxo[29] = "images/ac5.gif"; 
xoxo[30] = "images/ac6.gif"; 
xoxo[31] = "images/ac7.gif"; 

xoxo[32] = "images/more1.gif";
xoxo[33] = "images/more2.gif";
xoxo[34] = "images/more3.gif";
xoxo[35] = "images/more4.gif";
xoxo[36] = "images/more5.gif";
xoxo[37] = "images/more6.gif";
xoxo[38] = "images/more7.gif";
xoxo[39] = "images/more8.gif";
xoxo[40] = "images/more9.gif";
xoxo[41] = "images/more10.gif";
xoxo[42] = "images/more11.gif";
xoxo[43] = "images/more12.gif";
xoxo[44] = "images/more13.gif";
xoxo[45] = "images/more14.gif";
xoxo[46] = "images/more15.gif";
xoxo[47] = "images/more16.gif";
xoxo[48] = "images/more17.gif";
 




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); 
// --> 
