// JavaScript Document
var mygallery=new fadeSlideShow({
	wrapperid: "myslideshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [800, 446], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/page/pics/1.jpg"],
		["images/page/pics/2.jpg"],
		["images/page/pics/3.jpg"]//<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:2500, cycles:500, wraparound:false, randomize:true},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 800, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})

