<!-- 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] = 'pool/zoom.swf'
theImages[1] = 'pool/zoom.swf'


// 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('<object ');
document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=');
document.write('"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" ');
document.write('width="627" height="205">');
document.write('<param name="movie" value="'+theImages[whichImage]+'">');
document.write('<param name="quality" value="high">');
document.write('<embed src="'+theImages[whichImage]+'"quality="high" ');
document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"');
document.write('type=');
document.write('"application/x-shockwave-flash" width="627" height="205"></embed>');
document.write('</object>');
}

//  End -->
