// JavaScript Document


images = new Array(5);

images[0] = "<a href = 'http://www.villagenet.ca/messages/underconstruction.html'><img src='0.jpg' alt='Visit our picture gallery' border='0'></a>";

images[1] = "<a href = 'http://www.villagenet.ca/messages/underconstruction.html'><img src='1.jpg' alt='Visit our picture gallery' border='0'></a>";

images[2] = "<a href = 'http://www.villagenet.ca/messages/underconstruction.html'><img src='2.jpg' alt='Visit our picture gallery' border='0'></a>";

images[3] = "<a href = 'http://www.villagenet.ca/messages/underconstruction.html'><img src='3.jpg' alt='Visit our picture gallery' border='0'></a>";

images[4] = "<a href = 'http://www.villagenet.ca/messages/underconstruction.html'><img src='4.jpg' alt='Visit our picture gallery' border='0'></a>";

index = Math.floor(Math.random() * images.length);


document.write(images[index]);




