$(document).ready(function(){
		$('#testimonials .testimonial-entry').hide();
		$('#testimonials .testimonial-entry:first').show();
		$('#testimonials ul li:first').addClass('active');
		$('#testimonials ul li a').click(function(){
		$('#testimonials ul li').removeClass('active');
		$(this).parent().addClass('active');
		var currentTab = $(this).attr('href');
		$('#testimonials .testimonial-entry').hide();
		$(currentTab).show();
		return false;
		});
	});

