// 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.

ideas2 = new makeArray(4);
ideas2[0] = "<p class='facts'>100% of Publicis Selling Solutions clients rated us as &quot;good&quot; to &quot;excellent&quot; for flawless execution</p><p class='source'>Source: Publicis Selling Solutions Customer Satisfaction Survey</p>";
ideas2[1] = "<p class='facts'>92% of clients rated their overall satisfaction with their Publicis Selling Solutions partnership as &quot;good&quot; to &quot;excellent&quot; for flawless execution</p><p class='source'>Source: Publicis Selling Solutions Customer Satisfaction Survey</p>";
ideas2[2] = "<p class='facts'>Publicis Selling Solutions increased dollar sales 43% above the prior year for an Ophthalmic product;<br>sales growth was 7 times faster<br>than the rest of the market.</p><p class='source'>Source: Publicis Selling Solutions Internal Data</p>";
ideas2[3] = "<p class='facts'>Teamwork and continuous effort to improve execution is the best quality about Publicis Selling Solutions.</p><p class='source'>Source: Publicis Selling Solutions Customer Satisfaction Survey</p>";

// The random number generator.

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

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


