// JavaScript Document

// ALL IMAGE SCRIPT
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/header/header1.jpg'
theImages[1] = 'images/header/header2.jpg'
theImages[2] = 'images/header/header3.jpg'
theImages[3] = 'images/header/header2.jpg'


// do not edit anything below this line

var p = theImages.length;
var i = Math.round(Math.random()*(p-1));

document.write('<img src="'+theImages[i]+'" width="741px" height="100px" alt="image" border="0">');
