// main page slideshow
var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow", //ID of blank DIV on page to house Slideshow
	dimensions: [634, 292], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["http://www2.reelhookersclub.com/images/home-image1.jpg"],
		["http://www2.reelhookersclub.com/images/home-image2.jpg"],
		["http://www2.reelhookersclub.com/images/home-image3.jpg"],
		["http://www2.reelhookersclub.com/images/home-image4.jpg"],
		["http://www2.reelhookersclub.com/images/home-image5.jpg"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:4500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 2500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})

//sub-pagaes slide show

var mygallery1=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [634, 143], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["http://www2.reelhookersclub.com/images/sub-image1.jpg"],
		["http://www2.reelhookersclub.com/images/sub-image2.jpg"],
		["http://www2.reelhookersclub.com/images/sub-image3.jpg"],
		["http://www2.reelhookersclub.com/images/sub-image4.jpg"],
		["http://www2.reelhookersclub.com/images/sub-image5.jpg"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:4500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 2500, //transition duration (milliseconds)
	descreveal: "ondemand",
	togglerid: ""
})