/* ********************** */
			/* BEGIN SHUFFLE SETTINGS */
			/* ********************** */
			var shuffleSettings = {
				
				/* The original image width */
				imageWidth: 690,
				
				/* The original image height */
				imageHeight: 270,
				
				/* The margin between each image in pixels */
				imageMargin: 3,
				
				/* The amound of pixels to scale down by for each item */
				scaleDownBy: 30,
				
				/* Choose to set the Slideshow to auto-play, true/false */
				autoPlay: true,
				
				/* The autoPlay delay in milliseconds */
				autoPlayDelay: 7000,
				
				/* Choose to randomize the slide order everytime someone visits your web page, true/false */
				randomizeItems: false,
				
				/* The link target when a slide is linked, options are "_parent" and "_blank" */
				linkTarget: "_blank"
				
			};
			
			/* ************************ */
			/* BEGIN DEVELOPER SETTINGS */
			/* ************************ */
			jQuery(document).ready(function() {
				
				jQuery.cjShuffle(shuffleSettings);
				shuffleSettings = null;
	
			});

