$(document).ready(function(){
	
	var autoPlaying = true;
	
	/* Hero Slider */
	var slider = $('#fstories').bxSlider({
		controls: false,
		auto:true,
		pause:5000,
		speed:500,
		onAfterSlide: function(currentSlide, totalSlides){
			currentSlide += 1;
			$('#hero_status').html(currentSlide + ' of  ' + totalSlides);
        }
	});
	
	$('#hero_prev').click(function() {
		slider.goToPreviousSlide()
		autoPlaying = false
	});
	
	$('#hero_next').click(function() {
		slider.goToNextSlide()
		autoPlaying = false
	});
	
	$('#hero_pause').click(function() {
		slider.stopShow()
		autoPlaying = false
	});
});
