function switchTestimonial(direction) {

	$.get("/includes/ajax/testimonials.php", { direction: direction, current: tst_current },
	  function(data){
	    $('#testimonials #text').html(data);
	  });
	
}