// 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(3);
ideas[0] = "<span style='font-size: 150%;color:#ffffff;'>85%</span> of people said they use this template<br><br><span style='font-size: 9px;color:#ffffff;text-align:center'>Source: Logarithmic Impact</span>";
ideas[1] = "<span style='font-size: 150%;color:#ffffff;'>3 out of 4</span> of those surveyed say they read factoids a typical month.<br><br><span style='font-size: 9px;color:#ffffff;text-align:center'>Source: Logarithmic Impact</span>";
ideas[2] = "<span style='font-size: 150%;color:#ffffff;'>$2.5 million dollars</span> spent on advertising last year.<br><br><span style='font-size: 9px;color:#ffffff;text-align:center'>Source: Logarithmic Impact</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


