/* author: Paul Garrard  */
/* Creation date: 6/1/08 */



var say = new Array();

say[1] = "Stuff and nonsense" ;
say[2] = "Stating the bleedin' obvious" ;
say[3] = "Nothing is ever black and white" ;
say[4] = "Pure politics for now people" ;
say[5] = "Rock'n'roll is the new Rock'n'roll" ;
say[6] = "Liberté, Egalité, Fraternité" ;
say[7] = "Politics affects everyone" ;
say[8] = "Hope not hate" ;
say[9] = "Power to the people" ;
say[10] = "Give peace a chance" ;


var arraysize = say.length;


var rand = Math.floor(Math.random() *arraysize);


document.write("<html>");

document.write(" "+" "+say[rand]);
document.write("</html>");



