// JavaScript Document<!--// ==============================================// Copyright 2003 by jsCode.com// Source: jsCode.com// Author: etLux// ==============================================var images = new Array() images[0] = '../images/somerville/home/somhome_00.jpg'images[1] = '../images/somerville/home/somhome_01.jpg'images[2] = '../images/somerville/home/somhome_02.jpg'images[3] = '../images/somerville/home/somhome_03.jpg'images[4] = '../images/somerville/home/somhome_04.jpg'images[5] = '../images/somerville/home/somhome_05.jpg'images[6] = '../images/somerville/home/somhome_06.jpg'images[7] = '../images/somerville/home/somhome_07.jpg'// ======================================// do not change anything below this line// ======================================var j = 0var p = images.length;var buffer = new Array()for (i = 0; i < p; i++){   buffer[i] = new Image()   buffer[i].src = images[i]}var whichimage = Math.round(Math.random()*(p-1));function showimage(){document.write('<img src="'+images[whichimage]+'" border="0">');}//-->