var wordArray = new makeArray('<B>According to a recent study, approximately 75% of potential clients<BR>will visit your website before they choose to do business with you</B>.<BR>A professionally-designed, eye-catching website is more important than ever.', '<B>According to a recent study, people visiting your website<BR>form an opinion about it in <I>less than half the time it takes them to blink</I>.</B><BR>A professionally-designed, eye-catching website is more important than ever.');

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

function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}
