// JavaScript Document
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(8);
ideas[0] = "&quot;I would like to say that we have purchased Optimum Control to assist us in our costing (food and beverage) and I have to say it is the best purchase we have made in 14 years. The best part of Optimum besides the price and what it is capable of doing is the support. Optimum control support is the best I have ever had!&quot;<br /><strong>- Mike Marcolin</strong> <br />Owner QB Sports Grill, Toronto"
ideas[1] = "&quot;I would highly recommend Optimum Control to anyone who wants to save money, cost recipes effectively, and operate in a more profitable manner.&quot;<br /><strong>- Chris Wadham, President</strong> <br />Restaurant Office Intelligence Inc."
ideas[2] = "&quot;This is a great program. I have had my restaurant for 24 years and this is by far the best product!&quot;<br /><strong>- Ronnie Chastain, Owner</strong> <br />Cleve's Place"
ideas[3] = "This program has been more useful to us than any other program I have used in my 20+ years as a Chef...This allows our team more time to focus, on the success of the operation.&quot;<br /><strong>- Peter Ecker, Chef</strong>"
ideas[4] = "&quot;Tracrite's assistance with implementation and ongoing support of the Optimum Control program has been excellent. The program has allowed the QSR* managers to become more self-supervising and have a reliable tool to measure and control, controllable expenses. The NWC has realized a saving of 3%-5% of food costs and up to 6% in labor costs.&quot;<br /><strong>- Greg Jackson, QSR/Quickstop Market Manager</strong> <br />The North West Company"
ideas[5] = "&quot;I've used a few different food cost programs over the years and Optimum Control is the most user-friendly program I've ever seen. That's important because I'm giving this program to assistant managers whose familiarity with computers varies.&quot;<br /><strong>- Greg Fehr, Director of Operations</strong> <br />Appleseed Corporation (Applebee's Restaurants)"
ideas[6] = "&quot;...We have lowered our Food Cost about 2% since implementation...&quot;<br /><strong>- Kurt Dilger, Director of Operations.</strong> <br />Wendy's"
ideas[7] = "&quot;When planning menu pricing, Optimum Control is invaluable in providing data for our Menu Engineering process and as a result we achieved a 20% increase in savings over and above our target.&quot;<br /><strong>- Steve Wyatt, Owner</strong> <br />Canadian 2 for 1 Pizza Inc."

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff

