// JavaScript Document
	/* *************************** */
			/* BEGIN ZOOMSHOWCASE SETTINGS */
			/* *************************** */
			zoomShowcaseSettings = {
				
				/* The original image width */
				imageWidth: 675,
				
				/* The original image height */
				imageHeight: 377,
				
				/* The total alloted width for the banner */
				bannerWidth: 940,
				
				/* The speed of the shuffle animation in milliseconds */
				animationSpeed: 750,
				
				/* Options are "easeOutQuint", "easeInOutQuint", "easeOutQuad" and "easeInOutQuad",  */
				easing: "easeOutQuad",
				
				/* The opacity of the side items, 0-1 */
				sideOpacity: 0.5,
				
				/* Choose to set the Slideshow to auto-play, true/false */
				autoPlay: true,
				
				/* The autoPlay delay in milliseconds */
				autoPlayDelay: 4000,
				
				/* Choose to randomize the slide order everytime someone visits your web page, true/false */
				randomizeItems: true,
				
				/* The link target when a slide is linked, options are "_parent" and "_blank" */
				linkTarget: "_blank",
				
				/* The percentage to zoom out the sides, 0-1 */
				sideZoom: 0.75,
				
				/* The percentage to zoom out the back slide, 0-1 */
				backZoom: 0.5
				
			}
			
			/* ************************ */
			/* BEGIN DEVELOPER SETTINGS */
			/* ************************ */
			jQuery(document).ready(function() {
				
				jQuery.zoomShowcase(zoomShowcaseSettings);
				zoomShowcaseSettings = null;
	
			});
