<!-- Begin RANDOM HOME IMAGE

// CHANGE ANY OF THESE VARIABLES
// ONLY USE lowercase FOR ALL OPTIONS



var imageheight		= "300"				// HEIGHT OF THE HOME IMAGE
var linkedR		= ""			// RANDOM HOME IMAGE PAGE LINK
var alttext		= "Click to see a new image"	// IMAGE HOVER TEXT







// COPYRIGHT 2009 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE


// TO ADD MORE IMAGES: 	Edit the Math.random()*5 to number of images
//			Copy 3 lines of code and edit img == "?" to next number




// START RANDOM SCRIPT


var twox = "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"homeimage\" background=\"picts/";
var thrx = "><tr><td align=\"left\" valign=\"top\" class=\"printhide\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*17);
img = forx;
if (img == "0") {
document.write(twox+ 'home-1.jpg"' +thrx);
}
if (img == "1") {
document.write(twox+ 'home-2.jpg"' +thrx);
}
if (img == "2") {
document.write(twox+ 'home-3.jpg"' +thrx);
}
if (img == "3") {
document.write(twox+ 'home-4.jpg"' +thrx);
}
if (img == "4") {
document.write(twox+ 'home-5.jpg"' +thrx);
}
if (img == "5") {
document.write(twox+ 'home-6.jpg"' +thrx);
}
if (img == "6") {
document.write(twox+ 'home-7.jpg"' +thrx);
}
if (img == "7") {
document.write(twox+ 'home-8.jpg"' +thrx);
}
if (img == "8") {
document.write(twox+ 'home-9.jpg"' +thrx);

}
if (img == "9") {
document.write(twox+ 'home-10.jpg"' +thrx);
}

if (img == "10") {
document.write(twox+ 'home-11.jpg"' +thrx);
}
if (img == "11") {
document.write(twox+ 'home-12.jpg"' +thrx);
}
if (img == "12") {
document.write(twox+ 'home-13.jpg"' +thrx);
}
if (img == "13") {
document.write(twox+ 'home-14.jpg"' +thrx);
}
if (img == "14") {
document.write(twox+ 'home-15.jpg"' +thrx);
}
if (img == "15") {
document.write(twox+ 'home-16.jpg"' +thrx);
}
if (img == "16") {
document.write(twox+ 'home-17.jpg"' +thrx);
}



document.write('<a href="'+linkedR+'"><img src="picts/spacer.gif" width="100%" height="'+imageheight+'" border="0" alt="'+alttext+'"></a><br>');
document.write('</td></tr></table>');




// END -->