//<!--
// 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.
randomquote = new makeArray(4);
randomquote[0] = '&quot;I have greatly enjoyed working with Anteo Group.  In addition to being professional, reliable, and smart, they are attentive to our needs and work for us as if they owned shares in our company.&quot;';
randomquote[1] = '&quot;I am extremely pleased with our relationship with Anteo Group and the quality of people they have provided me as resources.  Our relationship has evolved from placing one position to an ongoing relationship.&quot;';
randomquote[2] = '&quot;Our Senior Management was so pleased with the quality ROI study. It is now their expectation that all projects will use your analysis on the front end of our projects.&quot;';
randomquote[3] = '&quot;You identified savings that were 250 times greater than the fee for the analysis.&quot;';

// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->