// JavaScript Document
//quote array
	quoteList = new Array();

	quoteList[0]="\"What the Parliament doth, no authority on earth can undo. So that it is a matter most essential to the liberties of this kingdom, that such members be delegated to this important trust, as are most eminent for their probity, their fortitude and their knowledge; for it was a known apothegm of the great lord treasurer Burleigh, ‘that England could never be ruined but by a Parliament.\"  (Blackstone’s Commentaries 1759)";
	quoteList[1]="\"In the highest government positions almost no human beings have been seen for decades now, anywhere in the world. \"  (Saul Bellow : Humboldt’s Gift)";
	quoteList[2]="\"Parliament is a tiny talent pool, without much talent in it...\"  (Pimlott: Harold Wilson)";
	quoteList[3]="\"A good politician is quite as unthinkable as an honest burglar.\"  (H.L.Mencken)";


//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
//set quote
	var quote = quoteList[random_number];
