var mygallery1=new fadeSlideShow({
	wrapperid: "slideshowpics1", //ID of blank DIV on page to house Slideshow
	dimensions: [205, 135], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/slideshows/icedlatte.png"],
		["images/slideshows/coffeebeans.jpg"],
		["images/slideshows/panini2.jpg"],
		["images/slideshows/latte_sm.jpg"],
		["images/slideshows/wrap_sm.jpg"] //<--no trailing comma after very last image element!
		],
	displaymode: {type:'auto', pause:3000, cycles:0, wraparound:true},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 750, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})

var mygallery2=new fadeSlideShow({
	wrapperid: "slideshowpics2", //ID of blank DIV on page to house Slideshow
	dimensions: [351, 263], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/slideshows/ce1.jpg"],
		["images/slideshows/ce2.jpg"],
		["images/slideshows/ce3.jpg"],
		["images/slideshows/ce4.jpg"] //<--no trailing comma after very last image element!
		],
	displaymode: {type:'auto', pause:4000, cycles:0, wraparound:true},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 750, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})
