jQuery(document).ready
(
	function()
	{
		
		/**
		 * Three-way slider
		 */
		jQuery('.slideshow').threeWaySlider
		({
			mainSlideWidth: 630,
			mainSlideHeight: 400,
			secondSlideWidth: 300,
			secondSlideHeight: 190,
			thirdSlideWidth: 300,
			thirdSlideHeight: 190,
			controls: true,
			controlsContainer: '#slideshow-controls',
			autoMode: true,
			pauseInterval: 5000
		});
		
		
	}
);
