
	function showNextTestmonial(URL)
	{		
		 $.ajax({
		   url: URL,
		   success: showTestimonial
		 });  		 
	}
	function showPrevTestmonial(URL)
	{  
		  $.ajax({
		   url: URL,
		   success: showTestimonial
		 });  				 
	}
	
	 
function showTestimonial(responseText)
{
	 document.getElementById('testimonial_content').innerHTML = responseText;
}