var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow", //ID of blank DIV on page to house Slideshow
	dimensions: [1000, 145], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["./images/fade/fade1.jpg"],
		["./images/fade/fade2.jpg"],
		["./images/fade/fade3.jpg"],
		["./images/fade/fade4.jpg"],
		["./images/fade/fade5.jpg"],
		["./images/fade/fade6.jpg"]
	],
	displaymode: {type:'auto', pause:4000, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})
function preloadfadeimages(){
var preloads=new Array()
for (var i=0;i<arguments.length;i++){
for (var t=0; t<arguments[i].length; t++){
preloads[preloads.length]=new Image()
preloads[preloads.length-1].src=arguments[i][t][0]
}
}
}
preloadfadeimages()
