/* Ultimate Fade-in slideshow (v2.1)
* Last updated: Sept 10th, 2009. This notice must stay intact for usage 
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [276, 245], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
	["images/1_slide11.jpg", "11_about.htm", "", ""], //"img", "link", "display", "text"
	["images/1_slide12.jpg", "11_about.htm", "", ""],
	["images/1_slide13.jpg", "11_about.htm", "", ""],
	["images/1_slide14.jpg", "11_about.htm", "", ""],
	["images/1_slide15.jpg", "11_about.htm", "", ""]  //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:9000, cycles:0, wraparound:false, randomize:true}, //randomize:true can be added
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500 //transition duration (milliseconds)
	})

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
	dimensions: [276, 245], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
	["images/1_slide21.jpg", "21_about.htm", "", ""], //"img", "link", "display", "text"
	["images/1_slide22.jpg", "21_about.htm", "", ""],
	["images/1_slide23.jpg", "21_about.htm", "", ""],
	["images/1_slide24.jpg", "21_about.htm", "", ""],
	["images/1_slide25.jpg", "21_about.htm", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:9500, cycles:0, wraparound:false, randomize:true}, //randomize:true can be added
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500 //transition duration (milliseconds)
	})

var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow3", //ID of blank DIV on page to house Slideshow
	dimensions: [276, 245], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
	["images/1_slide31.jpg", "31_about.htm", "", ""], //"img", "link", "display", "text"
	["images/1_slide32.jpg", "31_about.htm", "", ""],
	["images/1_slide33.jpg", "31_about.htm", "", ""],
	["images/1_slide34.jpg", "31_about.htm", "", ""],
	["images/1_slide35.jpg", "31_about.htm", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:10000, cycles:0, wraparound:false}, //randomize:true can be added
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500 //transition duration (milliseconds)
	})

