<!-- 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.fauxfilm.co.uk/images/HomePage/1.html'
theImages[1] = 'http://www.fauxfilm.co.uk/images/HomePage/2.html'
theImages[2] = 'http://www.fauxfilm.co.uk/images/HomePage/3.html'
theImages[3] = 'http://www.fauxfilm.co.uk/images/HomePage/4.html'
theImages[4] = 'http://www.fauxfilm.co.uk/images/HomePage/5.html'
theImages[5] = 'http://www.fauxfilm.co.uk/images/HomePage/6.html'
theImages[6 ]= 'http://www.fauxfilm.co.uk/images/HomePage/7.html'
//theImages[1] = 'http://www.fauxfilm.co.uk/images/HomePage/8.html'

//var theAlt = new Array()
//theAlt[0] = 'header image alt text'
//theAlt[1] = 'header image alt text'
//theAlt[2] = 'header image alt text'
//theAlt[3] = 'header image alt text'
//theAlt[4] = 'header image alt text'
//theAlt[5] = 'header image alt text'
//theAlt[6] = 'header image alt text'
//theAlt[7] = 'header image alt text'
//theAlt[8] = 'header image alt text'
//theAlt[9] = 'header image alt text'

// 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]+'">');
//document.write('<img src="'+theImages[whichImage]+'" Title="'+theAlt[whichImage]+'">');
document.write('<IFRAME src="'+theImages[whichImage]+'"width="530" height="380" frameborder="0" allowtransparency="true">');
}

//  End -->
