// JavaScript Document

var firstreel=new reelslideshow({
	wrapperid: "myreel", //ID of blank DIV on page to house Slideshow
	dimensions: [521, 373], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["img/slideshow/1.png"],
		["img/slideshow/2.png"],
		["img/slideshow/3.png"]//<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:8000, cycles:0, pauseonmouseover:true},
	orientation: "h", //Valid values: "h" or "v"
	persist: true, //remember last viewed slide and recall within same session?
	slideduration: 1000 //transition duration (milliseconds)
})
