/*extern DOMAssistant */
/*
	DOMAssistant.PictureSlides is developed by Robert Nyman, http://www.robertnyman.com
	For more information, please see http://www.robertnyman.com/picture-slides
	Released under a MIT License
*/
DOMAssistant.PictureSlides.set({
	// Switches to decide what features to use
	useImageText : false,
	useImageCounter : false,
	useNavigationLinks : false,
	useKeyboardShortcuts : false,
	useThumbnails : false,
	useFadingIn : true,
	useFadingOut : true,
	useFadeWhenNotSlideshow : false,
	useFadeForSlideshow : true,
	useDimBackgroundForSlideshow : false,
	loopSlideshow : true,
	usePreloading : false,
	
	// At page load
	startIndex : 0,
	startSlideshowAtLoad : true,
	dimBackgroundAtLoad : false,
	
	// Large images to use and thumbnail settings
	images : [
		["images/banner2a.jpg", ""],
		["images/banner1a.jpg", ""],
		["images/banner3.jpg", ""]
	],
	thumbnailActivationEvent : "click",
	
	// IDs of HTML elements to use
	mainImageId : "picture-slides-image", // Mandatory
	fadeContainerId : "picture-slides-container",
	imageTextContainerId : null,
	previousLinkId : null,
	nextLinkId : null,
	imageCounterId : null,
	startSlideShowId : null,
	stopSlideShowId : null,
	thumbnailContainerId: null,
	dimBackgroundOverlayId : null,
	elementOnTopOfDimBackgroundId : null,
	
	// Fading settings
	fadeIncrement : 0.2, // Goes from 0 to 1, and vice versa
	fadeInterval : 100, // Milliseconds	
	timeForSlideInSlideshow : 5500 // Milliseconds
});