<!-- 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://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_01.jpg'
theImages[1] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_02.jpg'
theImages[2] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_03.jpg'
theImages[3] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_04.jpg'
theImages[4] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_05.jpg'
theImages[5] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_06.jpg'
theImages[6] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_07.jpg'
theImages[7] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_08.jpg'
theImages[8] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_09.jpg'
theImages[9] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_10.jpg'
theImages[10] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_11.jpg'
theImages[11] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_12.jpg'
theImages[12] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_13.jpg'
theImages[13] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_14.jpg'
theImages[14] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_15.jpg'
theImages[15] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_16.jpg'
theImages[16] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_17.jpg'
theImages[17] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_18.jpg'
theImages[18] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_19.jpg'
theImages[19] = 'http://sydneylatinofilmfestival.org/cms/textpattern/txp_img/2008film_20.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 -->