var JRRTQuote=new Array()

JRRTQuote[0] = "J.R.R. Tolkien was born on the third of January, 1892.";
JRRTQuote[1] = "The Fellowship of the Ring was first published on July 29th 1954.";
JRRTQuote[2] = "J.R.R. Tolkien died on September 2nd, 1973.";
JRRTQuote[3] = "The Silmarillion was first published on September 15, 1977.";
JRRTQuote[4] = "The Hobbit was first published on September 21st, 1937.";
JRRTQuote[5] = "The Unfinished Tales was first published on October 2nd, 1980.";
JRRTQuote[6] = "The Return of the King was first published on October 20th, 1955.";
JRRTQuote[7] = "The Two Towers was first published on November 11th, 1954.";
JRRTQuote[8] = "Tolkien collaborated with E.V. Gordon on a translation of Sir Gawain and the Green Knight in 1925."
JRRTQuote[9] = "Tolkien married his wife, Edith on the 22 of March, 1916."
JRRTQuote[10] = "Farmer Giles of Ham was first published in 1949."
JRRTQuote[11] = "Tree and Leaf was first published in 1964."
JRRTQuote[12] = "The Adventures of Tom Bombadil was first published in 1962."
JRRTQuote[13] = "In 1967, Smith of Wootton Major was first published."

var Q = JRRTQuote.length;
var whichJRRTQuote=Math.round(Math.random()*(Q-1));
function showJRRTQuote(){document.write(JRRTQuote[whichJRRTQuote]);}
showJRRTQuote();