// JavaScript Document

var mygallery=new fadeSlideShow({
	wrapperid: "headershow", //ID of blank DIV on page to house Slideshow
	dimensions: [1000, 201], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/genorator/image1.jpg"],
		["images/genorator/image2.jpg"],
		["images/genorator/image3.jpg"],
		["images/genorator/image4.jpg"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:11000, cycles:0, wraparound:false, randomize:true },
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1000, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})

