/*extern jQuery */
/*

*/
jQuery.PictureSlides.set({
	// Switches to decide what features to use
	useImageText : true,
	useImageCounter : true,
	useNavigationLinks : true,
	useKeyboardShortcuts : true,
	useThumbnails : true,
	useFadingIn : true,
	useFadingOut : true,
	useFadeWhenNotSlideshow : true,
	useFadeForSlideshow : true,
	useDimBackgroundForSlideshow : true,
	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:
				// In a JavaScript file
jQuery.PictureSlides.images : [
	["images/pictures/0.jpg", "Intro"],
	["images/pictures/1.jpg", "Adesso"],
	["2.jpg", "Autumn's Cay"],
	["3.jpg", "Courtyards at Rolling Creek"]
	["4.jpg", "Crickentree"]
	["5.jpg", "DR Horton"]
	["6.jpg", "Hurricane Builders"]
	["7.jpg", "Lake Carolina"]
	["8.jpg", "Turner's Pointe"]

		*/
	],
	thumbnailActivationEvent : "click",
	
	// IDs of HTML elements to use
	mainImageId : "picture-slides-image", // Mandatory
	fadeContainerId : "picture-slides-container",
	imageTextContainerId : "picture-slides-image-text",
	previousLinkId : "previous-image",
	nextLinkId : "next-image",
	imageCounterId : "image-counter",
	startSlideShowId : "start-slideshow",
	stopSlideShowId : "stop-slideshow",
	thumbnailContainerId: "picture-slides-thumbnails",
	dimBackgroundOverlayId : "picture-slides-dim-overlay",
	elementOnTopOfDimBackgroundId : "picture-slides-frame",	
	
	// Fading settings
	fadeIncrement : 0.1, // Goes from 0 to 1, and vice versa
	fadeInterval : 30, // Milliseconds	
	timeForSlideInSlideshow : 18000 // Milliseconds
});
