var ISConf = 
{
	// you may remove anything below if you'd like to keep the file size down -- in which case the default values will be used

	// change the order of the different imageswitcher elements 
	// by entering a comma-separated list which may contain any of: 
	// "title", "list", "prevnext", "viewport"
	order : new Array 
	(
		"list",
		"viewport",
		"prevnext"
	),

	// what should the list of images look like?
	// "numbers", "thumbnails", "titles", "filenames"
	listType : "numbers", 

	// what happens when someone clicks on the current image? 
	// should it go to the next page?
	clickImageForNext : true,

	// Tooltip options:
	// (to preserve the HTML title attribute of the image tags, set it to "false" (without quotes))
	tooltip : "click for next.",

	// customize displayed text
	prevText : "last",	
	nextText : "next",

	// if listType is "numbers", customize options: 
	countFrom : 0,

	// if listType is "thumbnails", customize options
	thumbnailSuffix : "",
	thumbnailWidth : "32px",
	thumbnailHeight : "32px",

	// you may choose to preload all images in the background...
	usePreloader : true,

	// ...or load one-by-one, using an animation to show 
	// that the image is still loading  
	useLoadingImage : false,
	loadingImageSrc : "loading.gif",

	// how many elements should go on each page? 
	// choose more than 1 if you would like to create captions, for instance.
	elementsPerPage : 1,
	

	// advanced options:
	useOnLoad : false
};

