var quotes = new Array();
var gallery = new Array();
var thumb = new Array();

/* QUOTES for each image */
/* Page 1 quotes */
quotes[1] = "Nantucket-styled homes designed by renowned architects.";
quotes[2] = "Welcome home to Sconset Park";
quotes[3] = "Exterior features include cedar shake siding, wood trim and copper flashing";
quotes[4] = "Look out on 15 private acres and an unparalled view";
quotes[5] = "Superior craftsmanship and luxury finishes";
quotes[6] = "A gourmet kitchen ready to welcome family and friends";
/* Page 2 quotes */
quotes[7] = "State-of-the-art appliances make entertaining fun!";
quotes[8] = "Custom kitchen features you deserve";
quotes[9] = "Enjoy Viking kitchen appliances";
quotes[10] = "Exquisitely crafted, full masonry fireplace";
quotes[11] = "Catch some rays in the inviting sunroom";
quotes[12] = "Covered porches with mahogany decking and rails compliment your view!";
/* Page 3 quotes */
quotes[13] = "An exquisite master bath with luxury details";
quotes[14] = "Escape and relax in your elegant first floor master suite";
quotes[15] = "Extensive architectural millwork for an elegant home";
quotes[16] = "Finished lower level for easy entertaining";
quotes[17] = "Red oak stairs with poplar risers";
quotes[18] = "Gorgeous view overlooking Clapboard Ridge";


/* IMAGES - images should be 394px wide by 275px hight, and be named sequentially */
/* Matching thumbnails should have same name with _t as in 1_1_t.jpg , with a size of 85px x 85px

/* Page 1 Thumbs */
thumb[1] = "galleryimages/1_1_t.jpg";
thumb[2] = "galleryimages/1_2_t.jpg";
thumb[3] = "galleryimages/1_3_t.jpg";
thumb[4] = "galleryimages/1_4_t.jpg";
thumb[5] = "galleryimages/1_5_t.jpg";
thumb[6] = "galleryimages/1_6_t.jpg";
/* Page 2 Thumbs */
thumb[7] = "galleryimages/2_1_t.jpg";
thumb[8] = "galleryimages/2_2_t.jpg";
thumb[9] = "galleryimages/2_3_t.jpg";
thumb[10] = "galleryimages/2_4_t.jpg";
thumb[11] = "galleryimages/2_5_t.jpg";
thumb[12] = "galleryimages/2_6_t.jpg";
/* Page 3 Thumbs */
thumb[13] = "galleryimages/3_1_t.jpg";
thumb[14] = "galleryimages/3_2_t.jpg";
thumb[15] = "galleryimages/3_3_t.jpg";
thumb[16] = "galleryimages/3_4_t.jpg";
thumb[17] = "galleryimages/3_5_t.jpg";
thumb[18] = "galleryimages/3_6_t.jpg";


/* Page 1 Images */
gallery[1] = "galleryimages/1_1.jpg";
gallery[2] = "galleryimages/1_2.jpg";
gallery[3] = "galleryimages/1_3.jpg";
gallery[4] = "galleryimages/1_4.jpg";
gallery[5] = "galleryimages/1_5.jpg";
gallery[6] = "galleryimages/1_6.jpg";
/* Page 2 Images */
gallery[7] = "galleryimages/2_1.jpg";
gallery[8] = "galleryimages/2_2.jpg";
gallery[9] = "galleryimages/2_3.jpg";
gallery[10] = "galleryimages/2_4.jpg";
gallery[11] = "galleryimages/2_5.jpg";
gallery[12] = "galleryimages/2_6.jpg";
/* Page 3 galleryimages */
gallery[13] = "galleryimages/3_1.jpg";
gallery[14] = "galleryimages/3_2.jpg";
gallery[15] = "galleryimages/3_3.jpg";
gallery[16] = "galleryimages/3_4.jpg";
gallery[17] = "galleryimages/3_5.jpg";
gallery[18] = "galleryimages/3_6.jpg";

/* *** Do Not Edit below *** */
// Preload images
if (document.images) {
  	preload_images = new Image();
  	preload_thumbs = new Image();
	for(i=1; i<=18; i++) 
		preload_images.src = gallery[i];
		preload_thumbs.src = thumb[i];
}

function loadImages(a,b) {	
	var images = new Array();
	for(i=a; i<=b; i++) {
		//images[i] = document.getElementById(eval('thumb'&i));
		document.getElementById('thumb'+i).src = thumb[i];
	}
	document.getElementById('mainImage').src = gallery[a];
	document.getElementById('quote').firstChild.nodeValue = quotes[a];
}

function pgSwap(imgToSwap, swapToNum) {	
	//mainImage.src = gallery[swapToNum];
	var swapImg = document.getElementById(imgToSwap);
	swapImg.src = gallery[swapToNum];
	var swapTxt = document.getElementById("quote");
	swapTxt.firstChild.nodeValue = quotes[swapToNum];
}


