function rungallery() {
	var mygallery=new fadeSlideShow({
		wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
		dimensions: [947, 380], //width/height of gallery in pixels. Should reflect dimensions of largest image
		imagearray: [
			["images/homeSlideShow/big/1.jpg"],
			["images/homeSlideShow/big/2.jpg"],
			["images/homeSlideShow/big/3.jpg"] //<--no trailing comma after very last image element!
		],
		displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
		persist: false, //remember last viewed slide and recall within same session?
		fadeduration: 500, //transition duration (milliseconds)
		descreveal: "none",
		togglerid: ""
	})
}

/*function rungallery2() {
	var mygallery2=new fadeSlideShow({
		wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
		dimensions: [324, 226], //width/height of gallery in pixels. Should reflect dimensions of largest image
		imagearray: [
			["images/homeSlideShow/middle/logo.jpg"],
			["images/homeSlideShow/middle/device.jpg"],
			["images/homeSlideShow/middle/tip.jpg"]
			//<--no trailing comma after very last image element!
		],
		displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
		persist: false, //remember last viewed slide and recall within same session?
		fadeduration: 500, //transition duration (milliseconds)
		descreveal: "none",
		togglerid: "fadeshow2toggler"
	})
}

function rungallery3() {	
	var mygallery3=new fadeSlideShow({
		wrapperid: "fadeshow3", //ID of blank DIV on page to house Slideshow
		dimensions: [324, 226], //width/height of gallery in pixels. Should reflect dimensions of largest image
		imagearray: [
			["images/homeSlideShow/right/logo.jpg"],
			["images/homeSlideShow/right/tip-closed.jpg"],
			["images/homeSlideShow/right/tip-open.jpg"]
			//<--no trailing comma after very last image element!
		],
		displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
		persist: false, //remember last viewed slide and recall within same session?
		fadeduration: 500, //transition duration (milliseconds)
		descreveal: "none",
		togglerid: "fadeshow2toggler"
	})
}*/

rungallery();
setTimeout("rungallery2()",14250);
setTimeout("rungallery3()",28500);
