// JavaScript Document

var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'http://www.dfi.wa.gov/common/images/picture_green1.jpg'
theImages[1] = 'http://www.dfi.wa.gov/common/images/picture_green2.jpg'
theImages[2] = 'http://www.dfi.wa.gov/common/images/picture_green3.jpg'
theImages[3] = 'http://www.dfi.wa.gov/common/images/picture_green4.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="142" height="505" alt="image" border="0">');