// JavaScript Document

if (document.images) {
image0 = new Image;
image1 = new Image;
image2 = new Image;
image3 = new Image;
image4 = new Image;

image0.src = './multiplescope/burlington/pic02.jpg';
image1.src = './multiplescope/burlington/pic03.jpg';
image2.src = './multiplescope/burlington/pic01.jpg';
image3.src = './multiplescope/burlington/pic04.jpg';
image4.src = './multiplescope/burlington/pic05.jpg';


} else {
image0 = '';
image1 = '';
image2 = '';
image3 = '';
image4 = '';

document.rollimg = '';
}

var cap = ['Giant Gatsby sconces welcome visitors at the main entrance',
'The Gatsby sconces were designed to work with cast metal canopy, creating a strong sense of place at the entrance.',
'Gatsby detail: 100% recycled aluminum cast arms',
'Pedestrian-level Zelda exterior sconce',
'Gatsby detail: Pattern for sand casting'


];

function rollover(n) {
document.rollimg.src = window['image'+n].src;
document.getElementById('caption').innerHTML = cap[n];
}
