

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'http://www.boiseschools.org/graphics/indexpairs/a.jpg'
theImages[1] = 'http://www.boiseschools.org/graphics/indexpairs/b.jpg'
theImages[2] = 'http://www.boiseschools.org/graphics/indexpairs/c.jpg'
theImages[3] = 'http://www.boiseschools.org/graphics/indexpairs/d.jpg'
theImages[4] = 'http://www.boiseschools.org/graphics/indexpairs/e.jpg'
theImages[5] = 'http://www.boiseschools.org/graphics/indexpairs/f.jpg'
theImages[6] = 'http://www.boiseschools.org/graphics/indexpairs/g.jpg'
theImages[7] = 'http://www.boiseschools.org/graphics/indexpairs/h.jpg'
theImages[8] = 'http://www.boiseschools.org/graphics/indexpairs/i.jpg'
theImages[9] = 'http://www.boiseschools.org/graphics/indexpairs/j.jpg'
theImages[10] = 'http://www.boiseschools.org/graphics/indexpairs/k.jpg'
theImages[11] = 'http://www.boiseschools.org/graphics/indexpairs/l.jpg'
theImages[12] = 'http://www.boiseschools.org/graphics/indexpairs/m.jpg'
theImages[13] = 'http://www.boiseschools.org/graphics/indexpairs/n.jpg'
theImages[14] = 'http://www.boiseschools.org/graphics/indexpairs/o.jpg'
theImages[15] = 'http://www.boiseschools.org/graphics/indexpairs/p.jpg'
theImages[16] = 'http://www.boiseschools.org/graphics/indexpairs/q.jpg'
theImages[17] = 'http://www.boiseschools.org/graphics/indexpairs/r.jpg'
theImages[18] = 'http://www.boiseschools.org/graphics/indexpairs/s.jpg'
theImages[19] = 'http://www.boiseschools.org/graphics/indexpairs/t.jpg'
theImages[20] = 'http://www.boiseschools.org/graphics/indexpairs/u.jpg'
theImages[21] = 'http://www.boiseschools.org/graphics/indexpairs/v.jpg'
theImages[22] = 'http://www.boiseschools.org/graphics/indexpairs/w.jpg'
theImages[23] = 'http://www.boiseschools.org/graphics/indexpairs/x.jpg'
theImages[24] = 'http://www.boiseschools.org/graphics/indexpairs/y.jpg'
theImages[25] = 'http://www.boiseschools.org/graphics/indexpairs/z.jpg'
theImages[26] = 'http://www.boiseschools.org/graphics/indexpairs/aa.jpg'
theImages[27] = 'http://www.boiseschools.org/graphics/indexpairs/bb.jpg'
theImages[28] = 'http://www.boiseschools.org/graphics/indexpairs/cc.jpg'
theImages[29] = 'http://www.boiseschools.org/graphics/indexpairs/dd.jpg'
theImages[30] = 'http://www.boiseschools.org/graphics/indexpairs/ee.jpg'
theImages[31] = 'http://www.boiseschools.org/graphics/indexpairs/ff.jpg'
theImages[32] = 'http://www.boiseschools.org/graphics/indexpairs/gg.jpg'
theImages[33] = 'http://www.boiseschools.org/graphics/indexpairs/hh.jpg'
theImages[34] = 'http://www.boiseschools.org/graphics/indexpairs/ii.jpg'
theImages[35] = 'http://www.boiseschools.org/graphics/indexpairs/jj.jpg'
theImages[36] = 'http://www.boiseschools.org/graphics/indexpairs/kk.jpg'
theImages[37] = 'http://www.boiseschools.org/graphics/indexpairs/ll.jpg'
theImages[38] = 'http://www.boiseschools.org/graphics/indexpairs/mm.jpg'
theImages[39] = 'http://www.boiseschools.org/graphics/indexpairs/nn.jpg'
theImages[40] = 'http://www.boiseschools.org/graphics/indexpairs/oo.jpg'




// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

//  End -->
