var mygallery=new fadeSlideShow({
	wrapperid: "ssimage", //ID of blank DIV on page to house Slideshow
	dimensions: [901, 407], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["img/ss/01.jpg", "", "", "Caption #1"],
		["img/ss/02.jpg", "", "", "Caption #2"],
		["img/ss/03.jpg", "", "", "Caption #3"],
		["img/ss/04.jpg", "", "", "Caption #4"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:2000, cycles:1, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 2200, //transition duration (milliseconds)
	descreveal: "none",
	togglerid: "",
  	oninit: function(){--this.setting.totalsteps;} //this makes stop at the last slide
})


