<!-- Start

// set up pictures in images front directory as 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 
// note all 5 images must be present, if less images present, make copies and rename so
//that all 5 images 1.jpg to 5.jpg exist
// a different image will be selected randomly each time the home page is refreshed


var bx = "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"homeimage\" background=\"images/front/";
var cx = "><tr><td align=\"left\" valign=\"top\">";
var dx = "";
var img = "";

dx += Math.floor(Math.random()*5);
img = dx;
if (img == "0") {
		document.write(bx+ '1.jpg"' +cx);
		}
if (img == "1") {
		document.write(bx+ '2.jpg"' +cx);
		}
if (img == "2") {
		document.write(bx+ '3.jpg"' +cx);
		}
if (img == "3") {
		document.write(bx+ '4.jpg"' +cx);
		}
if (img == "4") {
		document.write(bx+ '5.jpg"' +cx);
		}

document.write('<a href="gallery.htm"><img src="images/spacer.gif" width="750" height="300" border="0" alt=""></a><br>');
document.write('</td></tr></table>');

//  finish -->