jQuery(document).ready(function(){	

	//Adds in next/prev buttons for Carousel
	jQuery("#content-feature .features").append("<span class=\"prev\"></span><span class=\"next\"></span>");
	
	//Runs Carousel 
	jQuery("#content-feature .features").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		auto: 8000,
		speed: 1500,
		circular: true,
		visible: 1,
		easing: "easeInOutSine"
	});

});
