//PJM - 23/09/04
//puts images into an array
var images = new Array(5);
images[0] = "/images/photos/header1.jpg";
images[1] = "/images/photos/header2.jpg";
images[2] = "/images/photos/header3.jpg";
images[3] = "/images/photos/header6.jpg";
images[4] = "/images/photos/header7.jpg";
//gets a random number
var rand;
rand = Math.floor(Math.random() * images.length);
//writes the style to produce the random header image
document.write("<style>\n");
document.write("#image {\n");
document.write("background:url(" + images[rand] + ") no-repeat 5px center;\n");
document.write("}\n");
document.write("</style>\n");
