﻿/** Testimonials **/

function writeTestimonials(elem, pos) {
	var text = new Array();
	var next = 0;
	
	text[0] = "\"We have used Cheetah Vox successfully when we needed to send mass texts to relay timely information to all our Members. The Cheetah Vox platform proved to be reliable and effective in getting our message across.\" - Roger Garza";
	text[1] = "\"In politics, speed kills. We use Cheetah Vox texting to move breaking news to our supporters at lighting speeds. And, with the two-way texting feature, we can gather feed back just as fast.\" - Robert E. Jones";
	text[2] = "\"For more complex messages, we launch robo calls cheap, fast and by ourselves to build crowds, give political updates and more. Trust me, you want a Cheetah in your tool box!\" - Robert E. Jones";
	text[3] = "\"We were able to quickly reach over 10,000 potential voters in just a matter of minutes and also received a tracking report. We are so glad this type of technology is available right in our own backyard.\" - Amy Clark Meachum";
	text[4] = "\"I've used Cheetah Vox in three political campaigns and I was impressed by the speed and the reporting of the system. Cheetah Vox expands the way I can reach my campaign audience.\" - Laurie Felkner Jones";
	
	$("#" + elem).fadeOut("slow", function() {
    	$("#" + elem).html("<a href='forum/index.php?board=5.0' style='text-decoration:none;font-weight:normal;' target='_blank'>"+text[pos]+"</a>");
		$("#" + elem).fadeIn("slow");
  	});
	
	if(pos < (text.length - 1))
	{
		next = pos + 1;
	}
	
	setTimeout("writeTestimonials('"+ elem +"', "+ next +");", 10000);
}
