// The Array Function

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// This is where the array of text/images/sounds is created.

ideas = new makeArray(9);
ideas[0] = "<strong>80%</strong> of leads are typically lost, ignored or discarded, compromising top-line revenue growth.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[1] = "<strong>90%</strong> of Marketing and C-level Executives said new customer acquistion is important to business growth, yet 44% are unsatisfied with the way their companies go after new business.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[2] = "<strong>75%</strong> of Marketing and C-level Executives believe they could increase revenue at least 10% with better business development practices.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[3] = "<strong>37%</strong> of Marketing and C-level Executives believe they could increase the top line by more than 20% with better business development practices.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[4] = "Growing faster at lower cost is the #1 challenge for marketing executives.<br><br><span class='footer'>Source: Profitable Channels & &quot;Revitalizing Lead Creation&quot; by Stephen Diorio, MarketingProfs.com Jun 1, 2004</span>";
ideas[5] = "<strong>More than half</strong> of senior executives do not have a formal process for generating, qualifying, certifying and validating new business opportunities.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[6] = "<strong>73%</strong> of senior executives say their company does not have a process for requalifying or revisiting leads.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[7] = "<strong>86%</strong> of senior executives say less than 10% of their prospects convert to new business. 56% say less than 5% of prospects convert.<br><br><span class='footer'>Source: &quot;Gauging the Cost of What&#39;s Lost,&quot; CMO Council / BPM Forum / Wendover Consulting. Jul 2, 2004</span>";
ideas[8] = "Even if it &quot;ain&#39;t broke,&quot; businesses need to periodically review their marketplace and place in it, then modify the business and its messages accordingly every three to five years to drive growth.<br><br><span class='footer'>Source: McKinsey & Co., Feb 6, 2007</span>";


// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff


