// JavaScript Document

<!--

gallery01_01 = new Image();
gallery01_01.src = "images/04-north-salem-hunt-country/01-north-salem-hunt-country-house.jpg";

gallery01_02 = new Image();
gallery01_02.src = "images/04-north-salem-hunt-country/01-north-salem-hunt-country-living.jpg";

gallery01_03 = new Image();
gallery01_03.src = "images/04-north-salem-hunt-country/02-north-salem-hunt-country-dining.jpg";

gallery01_04 = new Image();
gallery01_04.src = "images/04-north-salem-hunt-country/03-north-salem-hunt-country-den.jpg";

gallery01_05 = new Image();
gallery01_05.src = "images/04-north-salem-hunt-country/04-north-salem-hunt-country-breakfast.jpg";

gallery01_06 = new Image();
gallery01_06.src = "images/04-north-salem-hunt-country/05-north-salem-hunt-country-kitchen.jpg";

gallery01_07 = new Image();
gallery01_07.src = "images/04-north-salem-hunt-country/06-north-salem-hunt-country-mudroom.jpg";

gallery01_08 = new Image();
gallery01_08.src = "images/04-north-salem-hunt-country/07-north-salem-hunt-country-sitting.jpg";

gallery01_09 = new Image();
gallery01_09.src = "images/04-north-salem-hunt-country/08-north-salem-hunt-country-bathroom.jpg";

gallery01_10 = new Image();
gallery01_10.src = "images/04-north-salem-hunt-country/09-north-salem-hunt-country-stairway.jpg";

gallery01_11 = new Image();
gallery01_11.src = "images/04-north-salem-hunt-country/10-north-salem-hunt-country-pool.jpg";

back_button = new Image();
back_button.src = "../images/interface/back.jpg";
spacer = new Image();
spacer.src = "../images/interface/spacer-d8dfda.gif";
next_button = new Image();
next_button.src = "../images/interface/next.jpg";


var galleryCountCurrent = 1;
var galleryCountTotal = 11;


function gallerySwap(crement) {

	galleryCountCurrent = galleryCountCurrent + crement;
	
	
	if (galleryCountCurrent < 1) {
		galleryCountCurrent = 1;
	}
	if (galleryCountCurrent > galleryCountTotal) {
		galleryCountCurrent = galleryCountTotal;
	}
	
	
	if (galleryCountCurrent == 1) {
		document['gallery'].src = gallery01_01.src;	
		document['backbutton'].src = spacer.src;		
	}
	if (galleryCountCurrent == 2) {
		document['gallery'].src = gallery01_02.src;
		document['backbutton'].src = back_button.src;
	}
	if (galleryCountCurrent == 3) {
		document['gallery'].src = gallery01_03.src;
	}
	if (galleryCountCurrent == 4) {
		document['gallery'].src = gallery01_04.src;
	}
	if (galleryCountCurrent == 5) {
		document['gallery'].src = gallery01_05.src;
	}
	if (galleryCountCurrent == 6) {
		document['gallery'].src = gallery01_06.src;
	}
	if (galleryCountCurrent == 7) {
		document['gallery'].src = gallery01_07.src;
	}
	if (galleryCountCurrent == 8) {
		document['gallery'].src = gallery01_08.src;
	}
	if (galleryCountCurrent == 9) {
		document['gallery'].src = gallery01_09.src;
	}
	if (galleryCountCurrent == 10) {
		document['gallery'].src = gallery01_10.src;
		document['nextbutton'].src = next_button.src;
	}
	if (galleryCountCurrent == 11) {
		document['gallery'].src = gallery01_11.src;
		document['nextbutton'].src = spacer.src;	
	}
}


//-->

