function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(4);
ideas[0] = "Scheduling Nursing staff, 24/7 in a long-term care facility can be quite a challenge.  Full time, part time, per diem staff caring for 200+ residents used to be tedious and time consuming.  Frequent inconsistencies would be found that made meeting shift requirements a nightmare.  Schedule Pro has been a life-saver and time saver.  It has reduced the nightmare of spreadsheets and sticky pads to a manageable and faster process.  It has allowed us to maintain schedules and rosters in a way that makes it easy... ";
ideas[1] = "The SPRO system has many useful scheduling features and excellent reporting capabilities, which allowed us to customize the application in a short period of time. The EDP Software representative was very knowledgeable in redesigning the system to meet our immediate needs while responding to our challenges with logical, effective solutions. "
ideas[2] = "Schedule Pro has enabled us to standardize our scheduling processes across both Nova Scotia and New Brunswick. Between the two locations we have over 120 Bases and more than 2000 employees. Schedule Pro allows our staff to easily schedule according to the staffing needs of each area.  Filling of open shifts is performed easily allowing us to maintain the correct staffing levels..."
ideas[3] = "We purchased Schedule Pro over a year ago and have been extremely satisfied.  The program works wonderfully!  It is very user friendly and makes changing shifts, adding new employees and tracking vacations a breeze."
ideas[4] = "... We have been utilizing this program for the past fifteen months. We are very pleased with the program. The benefits of utilizing the program include: time savings for scheduling clerk are significant, greater accuracy in number of staff scheduled, pay slips are generated through the system, cumulative lists such as stats, vacation and seniority, shift lists are available for each day and it is very comprehensive program covering all aspects of scheduling..."

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff

