// JavaScript Document FOR FRONT PAGE CHOOSE YOUR DESTINATION ROLLOVERS

function doajax_testimonial(test_id)
	{
		var myAjax;
		target = "testimonial_content";
		var newurl = "ajax.testimonials.cfm";
		var pars = "test_id="+test_id;

		myAjax = new Ajax.Updater
			(
			target,
			newurl,
				{
				method : 'post',
				parameters : pars,
				// there are several different on(Event)'s available - these allow you to perform an action based on what is happening on your called page (EX: onSuccess)
				onFailure : function(obj) {alert("Error");}
				}
			);	
	}
