/* 
 * Copyright(c) 2010 DigitalCove Interactive
 * 
 * testimonial-rotation is proprietary software.
 * 
 * Usage, copying and distribution of this software is prohibited
 * without express written consent from Adam Walker <adam at digitalcove.ca>
 */

///**
// * Initiates the rotation
// */
//function startRotation() {
////    setTimeout("nextTestimonial()", 5000);
//    setInterval(nextTestimonial, 5000);
//}
//
///**
// * Gets the netx random testimonial
// */
//function nextTestimonial() {
//    $('#testimonial_content').load('/custom/next-testimonial.php');
////    setTimeout("nextTestimonial()", 5000);
//}

function startRotation() {
    setInterval(function() {
        $('#testimonial_content').load('/custom/next-testimonial.php',
                {when: new Date().getTime()});
    }, 5000);
}
