$(document).ready
(
	function()
	{
		/**
		 * Gallery slideshow
		 */
		$galleryContainer = $("#imgContainer");
		
		if (!$galleryContainer.length)
		{
			return;
		}
		
		$galleryContainer.easySlider
		({
			prevId: 		'imgControlsPrev',
			nextId: 		'imgControlsNext',	
			auto:			true,
			pause:			3000,
			continuous:		true,
			numeric:		true,
			numericId:		'imgControls',
			numericPrev:	true,
			numericNext:	true
		});
	}
);
