// Random Vertical Images
images = new Array();

// Add to this array for more images
images[0] = "<img src=\"images/vert-Bow River Rocky Mountains Canada.jpg\" alt=\"Third Angle\"/>";
images[1] = "<img src=\"images/vert_blue-sky-and-lake.jpg\" alt=\"Third Angle\"/>";
images[2] = "<img src=\"images/vert-calgary-verticle.jpg\" alt=\"Third Angle\"/>";


idx = Math.floor(Math.random()*images.length);

document.write(images[idx]);
