/***********************************************************************************
*
* functions for slideshow used in fadeslideshow  (Ultimate Fade-in slideshow (v2.4))
*
************************************************************************************/

// function for slideshow on client experience page
function clientSlideshow() {
var mygallery=new fadeSlideShow({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [580, 850], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [
		["http://www.stevensstrategic.com/wp-content/themes/stevens-strategic-communications/js/fadeslideshow/images/client-rotator/client-rotator-1.jpg", "", "", ""],
		["http://www.stevensstrategic.com/wp-content/themes/stevens-strategic-communications/js/fadeslideshow/images/client-rotator/client-rotator-2.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",
})
}
