// Create the array - random changing text, (c) 2005 Two Brothers Software.
var headline = new Array();
headline[0] = "<b>Place</b> statement one here";
headline[1] = "<b>Place</b> statement two here";
headline[2] = "<b>Place</b> statement three here";
headline[3] = "<b>Place</b> statement four here";
function randomNumber(n) {
number = Math.floor(Math.random() * (n + 1));
return number;
}