// JavaScript Document

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [256, 154], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/privateparties.jpg", "parties.php", "", "Private Parties"],
		["images/privateparties1.jpg", "parties.php", "", "Private Parties"],
		["images/privateparties2.jpg", "parties.php", "", "Private Parties"], //<--no trailing comma after very last image element! 
		["images/privateparties3.jpg", "parties.php", "", "Private Parties"]
	],
	displaymode: {type:'auto', pause:5500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "always",
	togglerid: ""
})

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
	dimensions: [256, 154], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		//["", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
		["images/giftcard.jpg", "http://shop.capitalrestaurants.com/Index.php/gift-cards", "", "Gift Cards"], //<--no trailing comma after very last image element!
		["images/eventthumb2.jpg", "stayintouch.php", "", "Stay In Touch"]
	],
	displaymode: {type:'auto', pause:5500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "always",
	togglerid: ""
})

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow3", //ID of blank DIV on page to house Slideshow
	dimensions: [256, 154], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		//["", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
		["images/tikibar.jpg", "events.php", "", "What's Happening..."],
		["images/cateting.jpg" , "", "", "Third Edition Caterers"] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:5500, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "always",
	togglerid: ""
})

