// Testimonials Carousel
	$(function() {
		var testimonialsCount = $("#testimonials span").length;
		var currTestimonials = 1;
	
		var afterEndCallback = function(visible){
			currTestimonials = $("span",visible).attr('title');
			setCount();
		}
	
		var setCount = function() {
			$("#testimonialsCounter").text("Recommendations "+currTestimonials+" of "+testimonialsCount);
		}
	
		$("#testimonials").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#prev",
			speed: 350,
			visible: 1,
			afterEnd: afterEndCallback
		});
	
		setCount();
	});
	
// Recent Work Carousel
	$(function() {
		var recentWorkCount = $("#recent_work span").length;
		var currentWork = 1;
	
		var afterEndCallback = function(visible){
			currentWork = $("span",visible).attr('title');
			setCount();
		}
	
		var setCount = function() {
			$("#recentWorkCounter").text("Recent Work "+currentWork+" of "+recentWorkCount);
		}
	
		$("#recent_work").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#prev",
			speed: 350,
			visible: 1,
			afterEnd: afterEndCallback
		});
	
		setCount();
	});