jq = jQuery.noConflict();

jq(function(){ 
	jq('#featured_slideContent').anythingSlider({
		easing          : 'easeInOutBack',
		autoPlay        : true,
		buildStartStop : false,
		easing	    :  'linear',
	//	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).
		onSlideComplete : function(slider){
			// alert('Welcome to Slide #' + slider.currentPage);
		}
	}); 
});

