/*!
 * Tribeca
 *
 * @category    Tribeca
 * @package     js
 * @copyright   Copyright (c) 2010 Worry Free Labs, LLC. (http://worryfreelabs.com/)
 * @author      Oleksandr Bernatskyi
 */

jQuery.noConflict();

jQuery(document).ready
(
	function()
	{	
		
		
		/**
		 * Gallery slideshow
		 */
		$galleryContainer = jQuery("#imgContainer");
		
		if ($galleryContainer.length)
		{
			$galleryContainer.easySlider
			({
				prevId:			'imgControlsPrev',
				nextId:			'imgControlsNext',	
				auto:			true,
				pause:			3000,
				continuous:		true,
				numeric:		true,
				numericId:		'imgControls',
				numericPrev:	true,
				numericNext:	true
			});
		}
	}
);
