$(document).ready(function() {

	$('.anythingSlider').anythingSlider({
		startStopped    : false, // If autoPlay is on, this can force it to start stopped
		theme           : 'metallic',
		autoPlayLocked  : true,  // If true, user changing slides will not stop the slideshow
		resumeDelay     : 10000, // Resume slideshow after user interaction, only if autoplayLocked is true (in milliseconds).
		delay			: 5000,      // How long between slideshow transitions in AutoPlay mode (in milliseconds)
		animationTime	: 600,       // How long the slideshow transition takes (in milliseconds)
		easing			: "easeOutCirc",   // Anything other than "linear" or "swing" requires the easing plugin
		hashTags		: false,
		onSlideComplete : function(slider){
			// alert('Welcome to Slide #' + slider.currentPage);
		}
	});
	
	$('#top-carousel .thumbNav').remove();

});
