// JavaScript Document
var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [1080, 134], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["fade_pics/pic01.jpg", "", ""],
		["fade_pics/pic02.jpg", "", ""],
		["fade_pics/pic03.jpg", "", ""],
		["fade_pics/pic04.jpg", "", ""],
		["fade_pics/pic05.jpg", "", ""],
		["fade_pics/pic06.jpg", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:8400, cycles:0, wraparound:false, randomize:true},
	persist: true, //remember last viewed slide and recall within same session?
	fadeduration: 2400, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})


var mygallery2=new fadeSlideShow({
	wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
	dimensions: [0, 0], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["", "", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'manual', pause:2500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 5000, //transition duration (milliseconds)
	descreveal: "always",
	togglerid: "fadeshow2toggler"
})

