// 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] = 'common/images/header/header0.jpg'
theImages[1] = 'common/images/header/header1.jpg'
theImages[2] = 'common/images/header/header2.jpg'
theImages[3] = 'common/images/header/header3.jpg'
theImages[4] = 'common/images/header/header4.jpg'
theImages[5] = 'common/images/header/header5.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="900px" height="121px" alt="image" border="0">');
