// ****************************************************************
// Be sure to use absolute url paths to each image within this file
// to ensure that the images can be seen on the entire website
// ****************************************************************

// function for slideshow on every page header (headerSlideshow)
function headerSlideshow() {
var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [350, 175], //width/height of gallery in pixels. Should reflect dimensions of largest image
	                        // Use absolute url paths to each image in the array
	imagearray: [
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/biz.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/biz2.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/display.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/gents.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/groupladies.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/kids.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/kids2.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/ncawatch.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/old.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/old2.jpg", "", "", ""],
		["http://www.gcnca.org/js/fadeslideshow/images-fadeslideshow/headerSlideshow/vegaart.jpg", "", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:3500, cycles:0, wraparound:false, randomize:true},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 2000, //transition duration (milliseconds)
	descreveal: "ondemand",
})
}


// EXTRA SAMPLE CODE BELOW 

// ***********************************************************************
// The following code is commented out and isn't needed for website to work. 
// It is extra code that shows examples of ways in which the slideshow can be 
// set up and configured. Keep the extra code in the file just as a 
// reminder of how the code can be set up.
// ***********************************************************************

/*
function slideshow2() {
var mygallery2=new fadeSlideShow({
	wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
	dimensions: [350, 275], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["images/fadeslideshow/1.jpg", "", "", ""],
		["images/fadeslideshow/2.jpg", "", "", ""],
		["images/fadeslideshow/3.jpg", "", "", ""],
		["images/fadeslideshow/4.jpg", "", "", ""],
		["images/fadeslideshow/5.jpg", "", "", ""],
		["images/fadeslideshow/6.jpg", "", "", ""] //<--no trailing comma after very last image element!
	],
	displaymode: {type:'auto', pause:3500, cycles:0, wraparound:false, randomize:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 2000, //transition duration (milliseconds)
	descreveal: "ondemand",
})
}

*/
