
var textArray = new Array();

textArray[0] = "Sleigh borne delivery was common during winter into<br>the first quarter of the 20th century.";
textArray[1] = "The veteran Chevrolet panel truck symbolizes the vigor and<br>traditions of the American Baking Industry.";
textArray[2] = "The operating windmill sign still attracts attention every day.";
textArray[3] = "Like a stroll down memory lane.";
textArray[4] = "This horse drawn Nickles Bakery baked goods delivery cart is a popular museum attraction.";
textArray[5] = "View of the authentic vintage ice cream parlor - lunchroom. So authentic that the period Coke machine dispenses 6oz. bottles for only a nickel.";
textArray[6] = "The home of the Bundy Museum of the Baking Arts was originally<br>constructed as a part of the Henry Fox & Co. Woolen Mill.";

if (document.images) {
		mus1l = new Image();
        mus1l.src = "/museum/images/photos/mus1l.jpg";
		mus2l = new Image();
        mus2l.src = "/museum/images/photos/mus2l.jpg";
		mus3l = new Image();
        mus3l.src = "/museum/images/photos/mus3l.jpg";
		mus4l = new Image();
        mus4l.src = "/museum/images/photos/mus4l.jpg";
		mus5l = new Image();
        mus5l.src = "/museum/images/photos/mus5l.jpg";
		mus6l = new Image();
        mus6l.src = "/museum/images/photos/mus6l.jpg";
		mus7l = new Image();
        mus7l.src = "/museum/images/photos/mus7l.jpg";
}

function changePhoto(id){
	if (document.images){
    	imgOn = eval("mus"+id+"l"+".src");
        document ['photoLarge'].src = imgOn;
		changeText(id);
    }
}


function changeText(id){
	var doc;
	if (document.all){
		document.all.caption.innerHTML = textArray[id-1];
	} else {
		document.getElementById("caption").innerHTML = textArray[id-1];
	}
	
}


