/* Our list, to instance our index slideshow function
* based on Reel Slideshow
* see reellideshow.js in this same directory
* Visit http://www.dynamicdrive.com/ for full source code
*/

var indexreel=new reelslideshow({
	wrapperid: "reelslideshowinstance", //ID of blank DIV on page to house Slideshow
	dimensions: [255, 400], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		// ["image_path", "optional_link", "optional_target"] (optional target is, e.g., "_new")
		["images/slideshows/index/index_twitter.png", "http://twitter.com/#!/txdtheatre"],
		["images/slideshows/index/index_email.png", "http://taxdeductibletheatre.org/connect.html"],
		["images/slideshows/index/index_fb.png", "https://www.facebook.com/pages/taxdeductible-theatre/202915286419732"],
		["images/slideshows/index/index_books.png", "http://www.lulu.com/spotlight/txdtheatre"]
			//no trailing comma after very last image element!                                ---^
	],
	displaymode: {type:'auto', pause:5000, cycles:0, pauseonmouseover:true},
	orientation: "h", //Valid values: "h" or "v"
	persist: true, //remember last viewed slide and recall within same session?
	slideduration: 600 //transition duration (milliseconds)
})

