// JavaScript Document<!--// ==============================================// Copyright 2003 by jsCode.com// Source: jsCode.com// Author: etLux// ==============================================var images = new Array() images[0] = '../images/capitol/home/caphome_00.jpg'images[1] = '../images/capitol/home/caphome_01.jpg'images[2] = '../images/capitol/home/caphome_02.jpg'images[3] = '../images/capitol/home/caphome_03.jpg'images[4] = '../images/capitol/home/caphome_04.jpg'images[5] = '../images/capitol/home/caphome_05.jpg'images[6] = '../images/capitol/home/caphome_06.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">');}//-->