$(document).ready(function(){
	$('#previous').click(function() {
	
		 var url = 'webservices/navigate.php?url=' + 'http://www.reftree.com/LexValorem.do?method=navigateTestimonials&id='+$('#previousDiv').html();
		$('#testimonials').load(url);

		return false;
	});

	$('#next').click(function() {
	
		 var url = 'webservices/navigate.php?url=' + 'http://www.reftree.com/LexValorem.do?method=navigateTestimonials&id='+$('#nextDiv').html(); 
	
		$('#testimonials').load(url);
		return false;
	});
});
