//
// This is the file you edit when you wish to add banner images to be displayed
//
// The dimensions for the banner should be 800 pixels wide, by 145 pixels high
// For best file size (fastest loading), jpg should be the image type
//
// Place the 800x145 images into the 'layout_images' folder
// Add a line of code below in the same format as the existing images
// The format is:
//
//		"imagename.jpg",
//
// It will be easiest if this line is inserted somewhere in the middle of the list
// This is because the last element does not require a comma at the end, and therefor would be an extra thing to remember
// Please note the quotes around the filename are double quotes
// Also note the comma is after the closing quote, not before it
//
// Once the line with the quote -> imagename.jpg -> quote -> comma has been added, save and close this file
// The image will now be one of the banners which can appear randomly whenever a page with the header is loaded


var imgs = new Array(
	"banner22.jpg",
	"banner42.jpg",
	"banner52.jpg",
	"banner82.jpg",
	"banner92.jpg",
	"banner62.jpg"
);
	

var len = imgs.length;
var rand = Math.floor(Math.random() * len);
document.write("<img src='/layout_images/");
document.write(imgs[rand]);
document.write("' width='800' height='125' alt='A Time to Wonder. A Time to Discover.' class='banner' />");


