// JavaScript Document

<!--

gallery01_01 = new Image();
gallery01_01.src = "images/01-park-avenue/01-park-avenue-entrance-hall.jpg";

gallery01_02 = new Image();
gallery01_02.src = "images/01-park-avenue/02-park-avenue-living-room.jpg";

gallery01_03 = new Image();
gallery01_03.src = "images/01-park-avenue/02b-park-avenue-living-room.jpg";

gallery01_04 = new Image();
gallery01_04.src = "images/01-park-avenue/03-park-avenue-library.jpg";

gallery01_05 = new Image();
gallery01_05.src = "images/01-park-avenue/04-park-avenue-dining-nook.jpg";

gallery01_06 = new Image();
gallery01_06.src = "images/01-park-avenue/05-park-avenue-custom-design-leather-top-table.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 = 6;


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;
		document['nextbutton'].src = next_button.src;
	}
	if (galleryCountCurrent == 6) {
		document['gallery'].src = gallery01_06.src;
		document['nextbutton'].src = spacer.src;	
	}
}


//-->
