﻿function testimonialLink_click(el)
{
    $(".testimonialItem").hide();
    var id = $(el).attr("rel");
    $("#" + id).show();
}

$(document).ready(function() { 
    $(".testimonialItem").hide();
    var count = $(".testimonialItem").length;
    var index = Math.floor(Math.random() * count);
    $(".testimonialItem").eq(index).show();
    //
    $(".testimonialLink").click(function() { testimonialLink_click($(this)); });
});    


