var dictionary = [
["Lexicographer", "A writer of dictionaries; a harmless drudge that busies himself in tracing the original and detailing the signification of words"],
["Monsieur", "A term of reproach for a Frenchman"],
["Club", "An assembly of good fellows, meeting under certain conditions"],
["Essay", "A loose sally of the mind; an irregular indigested piece; not a regular and orderly composition"],
["Network", "Any thing reticulated or decussated, at equal distances, with interstices between the intersections"],
["Patron", "One who countenances, supports or protects. Commonly a wretch who supports with insolence, and is repaid in flattery."],
["Oats", "A grain which in England is generally given to horses, but in Scotland supports the people"],
["Lunch", "As much food as one's hand can hold"]
];

function randomQuote() {
var length = dictionary.length;
var i = Math.floor(Math.random()*length)
$('word').update(dictionary[i][0]);
$('def').update(dictionary[i][1]);
}

Event.observe( window, 'load', function() {	
randomQuote();

Event.observe($('load'), 'click', function(event) {
randomQuote();
event.stop(event);
});
});