/*
	
	Get Info for Walls
	Copyright © Corporation Eightt.
	
	Coded by the henchmonkeys at Eightt,
	who want you to learn from some of
	their great techniques herein.
	
	Specific Page Author: Taldar Baddley.
	
*/



function zommImg(imgIndex, tieTole, theWidth, theHeight, fullWidth, fullHeight, theLast, isZoomable) {
	this.standardURL = zommState.standardPrefix + imgIndex + zommState.imgSuffix;
	this.fullURL = zommState.fullPrefix + imgIndex + zommState.imgSuffix;
	this.title = tieTole;
	this.width = theWidth;
	this.height = theHeight;
	this.fWidth = fullWidth;
	this.fHeight = fullHeight;
	if (imgIndex == 1) { this.isFirst = true; } else { this.isFirst = false; }
	this.isLast = theLast;
	this.canZoom = isZoomable;
}




getInfo = [ 'Silly you, there is no element zero!',
			
			// Index, Title, Width, Height, isLast, Zoomable
			new zommImg(1, 'East Wall, Bedroom', 816, 540, 0, 0, false, false),
			new zommImg(2, 'East Wall, Nook', 364, 540, 0, 0, false, false),
			new zommImg(3, 'Right Side, South Wall, Nook', 366, 540, 0, 0, false, false),
			new zommImg(4, 'Left Side, South Wall, Nook', 365, 540, 0, 0, false, false),
			new zommImg(5, 'South Wall, Living Room', 799, 540, 0, 0, false, false),
			new zommImg(6, 'East Wall, Living Room', 801, 540, 0, 0, false, false),
			new zommImg(7, 'North Wall, Living Room', 804, 540, 0, 0, false, false),
			new zommImg(8, 'South Wall, Entryway, Angyalok, Budapest', 812, 540, 750, 2617, false, true),
			new zommImg(9, 'Winter Light at Sunset, North Wall, Foster 415', 812, 540, 0, 0, false, false),
			new zommImg(10, 'Winter Light at Sunset, North Wall, Foster 415', 812, 540, 0, 0, false, false),
			new zommImg(11, 'Winter Light at Sunset, North Wall, Foster 415', 816, 540, 0, 0, true, false)
			
];  // End Picture Definitions










