/*extern jQuery */
/*
jQuery.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
*/
jQuery.PictureSlides.set({
	// Features to use
	useImageText: true,
	useImageCounter: true,
	useNavigationLinks: true,
	useKeyboardShortcuts: true,
	useThumbnails: true,
	useFadingIn: true,
	useFadingOut: true,
	useFadeWhenNotSlideshow: true,
	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: [
		/*
			Set paths to the large images (Only needed if not using thumbnails with links to them)
			Example:
				["images/picture1.jpg", "Text describing that picture"],
				["images/picture2.jpg", "More descriptive text"]
		*/
	],
	thumbnailActivationEvent: "click",

	// IDs of HTML elements to use
	fadeContainerId: "picture-slides-container",
	mainImageId: "picture-slides-image", // Mandatory
	imageTextContainerId: "picture-slides-description",
	previousLinkId: "prev-image",
	nextLinkId: "next-image",
	imageCounterId: "image-counter",
	startSlideShowId: "start-slideshow",
	stopSlideShowId: "stop-slideshow",
	thumbnailContainerId: "picture-slides-nav",
	dimBackgroundOverlayId: "picture-slides-dim",
	elementOnTopOfDimBackgroundId: "picture-slides-frame",	

	// Fading settings
	fadeIncrement: 0.1, // goes from 0 to 1, and vice versa
	fadeInterval: 75, // milliseconds	
	timeForSlideInSlideshow: 2500 // milliseconds
});
