jQuery(document).ready(function(){


	jQuery('#slides')
	.anythingSlider({
		
		hashTags            : false,
		startStopped        : false,
		resizeContents      : true,
		infiniteSlides      : false,
		autoPlay            : true,
		pauseOnHover        : true,
		delay               : 4500,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
  		resumeDelay         : 3000,     // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
  		animationTime       : 600,       // How long the slideshow transition takes (in milliseconds)
  		easing              : 'easeOutCirc',
		navigationFormatter : function(i, panel){
			return [i - 0];return false;

		}
	});

	jQuery("#gallery a").colorbox();
});




