var testimonials_rand_go = 0;
var time_testimonials = 15000;
var testimonial = 0;
function testimonials_rand()
{
	if (testimonials_rand_go == 0)
	{
		testimonials_rand_go = 1;
		setTimeout("testimonials_rand()",time_testimonials);
	}
	else
	{
		var query = {};
		query['testimonials_next'] = testimonial;
		var req = new JsHttpRequest();
		req.onreadystatechange = function()
			{			 
				if (req.readyState == 4)
				{			
					if (req.responseJS.result != undefined) 
					{
						var result = req.responseJS.result;
						var testimonials = $('testimonials_rand');
						testimonials.innerHTML = result;
					}
					setTimeout("testimonials_rand()",time_testimonials);
		     	} 
			}									
			req.caching = false;
			req.open('GET',ajax_prefix+"index.php?rm=TestimonialsRand", true);
			req.send({q:query});
	}
	return true;
}