/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function showLargeTestimonial() {

    //alert("This function [showLargeTestimonial()] loaded correctly");

    $("#testimonial-load").load('testimonials.inc.php?size=large', function(response, status, xhr) {
        if (status == "error") {
            $("#testimonial-load").load('testimonials-backup.html #large');
        }
    });

    return false;
}

function showSmallTestimonial() {

    //alert("This function [showSmallTestimonial()] loaded correctly");

    $("#testimonial-load").load('testimonials.inc.php?size=small', function(response, status, xhr) {
        if (status == "error") {
            $("#testimonial-load").load('testimonials-backup.html #small');
        }
    });

    return false;
}
