function random_text()
{};
var random_text = new random_text();
var number = 0;
random_text[number++] = "<h4>Q. Does Premier Personnel offer only temporary positions?</h4><p>No. We also offer full-time direct-hire and temp-to-hire positions.</p>"
random_text[number++] = "<h4>Q. Can temporary employees earn benefits?</h4><p>Yes. Employees who meet certain criteria are eligible for benefits. <a href='./contact.html'>Contact Premier Personnel</a> to learn these qualifications.</p>"
random_text[number++] = "<h4>Q. Does the average temporary assignment cover 40 hours a week?</h4><p>Assignment lengths usually vary, so we cannot guaranrtee a 40-hour week. Some assignments last only one day, others many months. Although we cannot guarantee your weekly hours, we strive to keep you working as often as you wish.</p>"
random_text[number++] = "<h4>Q. Does Premier Personnel charge a fee for their service?</h4><p>No. There is never a fee to employees for our service. Client companies cover our costs.</p>"
var random_number = Math.floor(Math.random() * number);
document.write(random_text[random_number]);