function testimonial_rotate()
{
var testimonials = new Array
var authors = new Array
var num_testimonials = 4;

testimonials[0] = "I joined US Mortgage Recruiters and I couldn't be more, happy, successful, and the pay is superb!";
authors[0] = "Cameron McArthur, Denver, CO";

testimonials[1] = "I would highly recommend working with US Mortgage Recruiters.";
authors[1] = "Tom Peters, California";

testimonials[2] = "US Mortgage Recruiters are leaders in the Mortgage Industry.";
authors[2] = "Barbara, Senior Loan Processor";

testimonials[3] = "I have been working as a US Mortgage Recruiters Bank Agent for a couple of years now and I highly recommend this service.";
authors[3] = "Teri ‘Star” Irvine";



//set the new tagline
var current_testimonial = Math.floor(Math.random() * (num_testimonials-1));

document.getElementById('testimonial_text').innerHTML = "&quot;" + testimonials[current_testimonial] + "&quot;";
document.getElementById('testimonial_author').innerHTML = authors[current_testimonial];

//setTimeout('testimonial_rotate()',5000);

}