

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [202, 122], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["/images/fadeshow/index/portico-storefront.png"],
		["/images/fadeshow/index/round-chair.png"],
		["/images/fadeshow/index/bedroom.png"],
		["/images/fadeshow/index/artisans.png"],
		["/images/fadeshow/index/table-chairs.png"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:7500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1200, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})






function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images ) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}




