/* Sets up how many possbible testimonials there can be */
var imageCount = 12;
/* generates random number when called */
function get_random() { 
  var ranNum= Math.floor(Math.random()* imageCount );
  return ranNum;
}
/* Call to get random number */
var whichImage=get_random();



/* Place Testimonial text in one of he following positions*/
if (whichImage == 0) {
  document.write('<p class="testimonial-text"><q lang="en">I can honestly say that this was the most amazing 30 minute massage I have ever had.</q></p>');
}
if (whichImage == 1) {
  document.write('<p class="testimonial-text"><q lang="en">I actually look forward to a long layover.</q></p>');
}
if (whichImage == 2) {
  document.write('<p class="testimonial-text"><q lang="en">The massage portion of the pedi was to die for.</q></p>');
}
if (whichImage == 3) {
  document.write('<p class="testimonial-text"><q lang="en">It was a sad Christmas alone UNTIL I was greeted by the ladies offering me a massage.</q></p>');
}
if (whichImage == 4) {
  document.write('<p class="testimonial-text"><q lang="en">The massage was ahhhmazing.</q></p>');
}
if (whichImage == 5) {
  document.write('<p class="testimonial-text"><q lang="en">They were an island in the storm. They took very good care of us!</q></p>');
}
if (whichImage == 6) {
  document.write('<p class="testimonial-text"><q lang="en">I have been encouraging my friends to head to the airport early.</q></p>');
}
if (whichImage == 7) {
  document.write('<p class="testimonial-text"><q lang="en">Thanks for being a bright spot in the otherwise hectic routine of traveling!</q></p>');
}
if (whichImage == 8) {
  document.write('<p class="testimonial-text"><q lang="en">I bought your neck pillow and love it.</q></p>');
}
if (whichImage == 9) {
  document.write('<p class="testimonial-text"><q lang="en">10 minutes in heaven and I did not even have to take my clothes off.</q></p>');
}
if (whichImage == 10) {
  document.write('<p class="testimonial-text"><q lang="en">There is one nice thing about having extra time at an airport – access to XpresSpa!</q></p>');
}
if (whichImage == 11) {
  document.write('<p class="testimonial-text"><q lang="en">All I got was 15 minutes, but it was like the best 15 minutes of my life.</q></p>');
}
