/* Ultimate Fade-in slideshow (v2.4)
* Last updated: May 24th, 2010. This notice must stay intact for usage 
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/

//Oct 6th, 09' (v2.1): Adds option to randomize display order of images, via new option displaymode.randomize
//May 24th, 10' (v2.4): Adds new "peakaboo" option to "descreveal" setting. oninit and onslide event handlers added.



var mygallery=new fadeSlideShow({
	wrapperid: "footer_fadeshow", //ID of blank DIV on page to house Slideshow
	dimensions: [980, 30], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "contact.html", "_new", 
		 "!! Call Us Now 087 416 9373 !!"],
		
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "http://www.stayboating.com/store_stayboating/300110/comersus_listItems.asp?hotDeals=-1", "_new", 
		 "Special Offers"],
		
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "contact.html", "_new", 
		 "We will attend/sponsor suitable events Call Us"],
		
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "http://www.boatingpartsonline.com/catalogue/boatingpartsonline_catalogue.pdf", "_new", 
		 "Get Our Latest 2011/12 Catalogue Click here"],
		
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "http://www.stayboating.com/store_stayboating/300110/comersus_listItems.asp?hotDeals=-1", "_new", 
		 "!! Sale Now On !! "],
		
		["http://www.mandrmarine.com/R301011/images/button2.jpg",
		 "brokerage.html", "_new",  
		 "Brokerage : Olympus 540 &euro; SOLD !! "] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:5000, cycles:0, wraparound:true},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 1000, //transition duration (milliseconds)
	//  descreveal: "ondemand",
	descreveal: "always",
	align: "left",
	togglerid: ""
})

// Second Slide show panel

//var mygallery2=new fadeSlideShow({
//	wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
//	dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
//	imagearray: [
//		["http://i26.tinypic.com/11l7ls0.jpg", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
//		["http://i29.tinypic.com/xp3hns.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
//		["http://i30.tinypic.com/531q3n.jpg"],
//		["http://i31.tinypic.com/119w28m.jpg", "", "", "What a beautiful scene with everything changing colors."] //<--no trailing comma after very last image element!
//	],
//	displaymode: {type:'manual', pause:2500, cycles:0, wraparound:false},
//	persist: false, //remember last viewed slide and recall within same session?
//	fadeduration: 500, //transition duration (milliseconds)
//	descreveal: "always",
//	togglerid: "fadeshow2toggler"
//})



