

var thePics = new Array() 
thePics[0] = '../album/highlights/art1.gif'
thePics[1] = '../album/highlights/art2.gif'
thePics[2] = '../album/highlights/art3.gif'
thePics[3] = '../album/highlights/art4.gif'
thePics[4] = '../album/highlights/art5.gif'
thePics[5] = '../album/highlights/art6.gif'
thePics[6] = '../album/highlights/cmg.gif'
thePics[7] = '../album/highlights/art7.gif'
thePics[8] = '../album/highlights/art8.gif'

var j = 0
var p = thePics.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = thePics[i]
}
var whichPics = Math.round(Math.random()*(p-1));


function showPics(){
document.write('<img src="'+thePics[whichPics]+'" border="0">');
}