/*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 : true,
	useImageCounter : true,
	useNavigationLinks : true,
	useKeyboardShortcuts : true,
	useThumbnails : true,
	useFadingIn : true,
	useFadingOut : true,
	useFadeWhenNotSlideshow : true,
	useFadeForSlideshow : true,
	useDimBackgroundForSlideshow : false,
	loopSlideshow : true,
	usePreloading : true,
	
	// At page load
	startIndex : 0,	
	startSlideshowAtLoad : false,
	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/print/neurographica/neurographica0.jpg", "Neurographica a documentation of thesis work that looks at the intersection of design and the (neuro)sciences."],
		["images/print/neurographica/neurographica1.jpg", "The first volume looks at the history of how the brain has been imaged."],
		["images/print/neurographica/neurographica2.jpg", "One of my delights was to find how instrumental design has been in exploring the mind."],
		["images/print/neurographica/neurographica3.jpg", "Thus the second volume emerged."],
		["images/print/neurographica/neurographica4.jpg", "Important collborators in this journey have been post docs at Caltech."],
		["images/print/neurographica/neurographica5.jpg", " "],
		["images/print/neurographica/neurographica6.jpg", "The last volume is a dedicated look at ways in which design can be used as an instrument to explore neuro data via processing."],
		["images/print/neurographica/neurographica7.gif", "Original data: each row represents signal recorded, increase in y = increase in time."],
		["images/print/neurographica/neurographica8.png", "Sample neurographic specimens (borrowed from the concept of 'Typographic specimens.') The representations are programmed data."],
		["images/print/neurographica/neurographica9.png", "Each specimen explored aspects of data."],
		["images/print/neurographica/neurographica10.png", "Coding was made possible with the (generous) help of Peter Cho and Charles Lu."],

				
	],
	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 : 2000 // Milliseconds
});
