// JavaScript Document

//store the images in arrays

images = new Array(14);

images[0]="<img src='code/random/labyrinth.jpg'></a>";
images[1]="<img src='code/random/manchester_josh.jpg' alt='Rev. Josh Pawalek, Manchester, CT UU'></a>";
images[2]="<img src='code/random/grafton.jpg' alt='UU Society of Grafton and Upton'></a>";
images[3]="<img src='code/random/littleton-choir.jpg' alt='Choir of the Littleton church'></a>";
images[4]="<img src='code/random/groton-eleakemler.jpg'.jpg' alt='Groton, CT'></a>";
images[5]="<img src='code/random/w_hartford.jpg' alt='UU Church of West Hartford, CT'></a>";
images[6]="<img src='code/random/bridgeport3.jpg' alt='Bridgeport, CT'></a>";
images[7]="<img src='code/random/pittsfield.jpg' alt='Pittsfield UU'></a>";
images[8]="<img src='code/random/hartford.jpg' alt='Hartford UU in Winter'></a>";
images[9]="<img src='code/random/northboro.jpg' alt='Panoramic view of First Parish UU, Northborough. Lee Tabor photo (c)2005'></a>";
images[10]="<img src='code/random/bridgeport.jpg' alt='Junior Choir, Bridgeport, CT'></a>";
images[11]="<img src='code/random/petersham.jpg' alt='Petersham, MA'></a>";
images[12]="<img src='code/random/Ashby.jpg' alt='Ashby, MA'></a>";
images[13]="<img src='code/random/bridgeport2.jpg' alt='Reverend Denise Davidoff, Westport, CT and friend at Bridgeport, CT'></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done