function random_text(s) {
  var random_text = new Array();
  var number = 0;
  random_text[number++] = '<span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-style: italic;">"Have I told you lately that YOU ARE THE BEST...  Thanks for doing such an awesome job."</span><br/><span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-weight: bold;">- M. Gurjit</span>';
  random_text[number++] = '<span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-style: italic;">"Thank you.  Always a pleasure.  In fact, I wish ALL our storage needs could be handled through EMSS.  You always take such good care of me and it is greatly appreciated!!  You are the BEST.  Thanks again for the Excellent Service!"</span><br /><span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-weight: bold;">- P. Mandel</span>';
  random_text[number++] = '<span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-style: italic;">"Thanks for the excellent service you provided.  Yours truly."</span><br /><span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-weight: bold;">- M. Cahchano</span>';
  random_text[number++] = '<span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-style: italic;">"I would just like to say that when I call about any trailer issue that it is taken care of right a way.  Please pass this on to your team and tell them they are doing an outstanding job.  This is why I am going to keep on using Express Mobile Solutions.  Thanks again."</span><br /><span style="color: #282828; font-family: verdana, sans-serif; font-size: 12px; font-weight: bold;">- D. Tessier</span>';
  var random_number = Math.floor(Math.random() * number);
  $("#" + s).html(random_text[random_number]);
}

$(document).ready(function() {
  random_text("testimonials");
});