// 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(8);
ideas[0] = "<span style='font-size: 120%;'>PracticeWire provides a brand up to 40 minutes of promotional messaging to the back-office everyday!</span>";
ideas[1] = "<span style='font-size: 120%;'>96% of physician respondents watch PracticeWire</span>";
ideas[2] = "<span style='font-size: 120%;'>Physicians watch 22 times per day!</span>";
ideas[3] = "<span style='font-size: 120%;'>96% say it reminds them of information they would not otherwise be thinking about</span>";
ideas[4] = "<span style='font-size: 120%;'>Staff members watch 26 times per day</span>";
ideas[5] = "<span style='font-size: 120%;'>&quot;There needs to be more focus on knowledge of Local Market Dynamics&quot;<br><br><span style='font-size: 50%;'>Source: IMS Health Consulting</span></span>";
ideas[6] = "<span style='font-size: 120%;'>&quot;There is a need to find Alternative Methods of reaching and influencing key prescribers&quot;<br><br><span style='font-size: 50%;'>Source: IMS Health Consulting</span></span>";
ideas[7] = "<span style='font-size: 120%;'>&quot;Better Resource Optimization is needed&quot;<br><br><span style='font-size: 50%;'>Source: IMS Health Consulting</span></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
