﻿function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<p>JSP ON-HOLD has provided us with dependable, professional service for over 10 years. Their services send key marketing messages to tens of thousands of our customers every day. JSP ON-HOLD delivers the message-on-hold media to our 18 offices, nationwide, on time every month. Their talent and staff is a joy to work with.</p> <p><b>Sage Software</b></p>"  
random_text[number++] = "<p>I've worked with John Sebastian Productions and JSP ON-HOLD services for over 10 years and have even brought them along when I switched employers. They provide copy writing, as well as voice-over and narration that are one of the best I've worked with. JSP ON-HOLD makes it easy… I send them copy ideas each month, they send me back an ON-HOLD script I make any changes we feel necessary, and I get my new message tape promptly at the end of the month. They even handle my last minute changes when we need to have a message re-cut. I highly recommend John Sebastian Productions.</p><p><b>Financial Edge Community Credit Union</b></p>"
random_text[number++] = "<p>Love it! People comment frequently about our JSP ON-HOLD Service. It helps us to market our services.</p><p><b>Kelly Veterinary Clinic</b></p>"
random_text[number++] = "<p>Kapnick Insurance Group has been using JSP ON-HOLD for many years and we find the production quality to be excellent. JSP ON-HOLD is always prompt and never misses their deadline to provide our updates messages on a monthly basis. Kapnick Insurance Group recommends JSP ON-HOLD to anyone interested in having their personal message about their business and products heard by current customers and potential customers.</p><p><b>Kapnick Insurance Group</b></p>"
random_text[number++] = "<p>John is a joy to work with! John Sebastian Productions provides; affordable solutions, excellent customer services, and high quality finished products.</p><p><b>United Bank and Trust</b></p>"
random_text[number++] = "<p>We started using JSP On-Hold about 6 months ago, and in that time we have had many compliments on our on-hold.  We feel it is much nicer than dead air, or those annoying beeps that so many have.  John has done a great job for us, many have asked us who provides our on-hold, mostly because they love his voice, and of course we are happy to tell them.</p><p><strong>Blind Children’s Fund</b></strong>"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->


