function book1() {
	var str=new Array(
					"A City Full of People by Peter Earle",
					"A Guide to the Architecture of London by Edward Jones",
					"A New Description of Sir John Soane's Museum by Peter Thornton",
					"An Encyclopaedia of London by William Kent",
					"Boswell1s London Journal 1762-1763 by F.A. Pottle",
					"Buildings of England: London by Nikolas Pevsner",
					"Chambers London Gazetteer by Russ Willey",
					"Chequers: The Prime Minister's Country House And Its History by Norma Major",
					"City At Risk: A Close Look At London's Streets by Simon Jenkins",
					"Crewe House by Quentin Crewe",
					"Do Not Pass Go by Tim Moore"
					);
	var a;
	a=str[parseInt(Math.random()*11)];
	document.write(a)
};


function book2() {
	var str=new Array(
					"Dockland by S.K. Al Naib",
					"Dr Johnson's London by Lisa Picard",
					"England's Thousand Best Churches by Simon Jenkins",
					"England's Thousand Best Houses by Simon Jenkins",
					"Follies, Grottoes and Garden Buildings by Gwyn Headley",
					"From Palace to Power: Illustrated History of Whitehall by Susan Foreman",
					"Georgian London by John Summerson",
					"Heraldry in National Trust Houses by Thomas Woodcock",
					"In Search of London by H.V.Morton",
					"Inside London by Joe Friedman",
					"Leather Armchairs by Charles Graves"
					);
	var a;
	a=str[parseInt(Math.random()*11)];
	document.write(a)
};


function book3() {
	var str=new Array(
					"Len Deighton's London Dossier by Len Deighton",
					"Lights Out for the Territory by Iain Sinclair",
					"London by Arthur Mee",
					"London by Harry N. Abrams",
					"London Architecture: Features and Facades by Ben Weinreb",
					"London as It Might Have Been by Felix Barker",
					"London Heritage by Michael Jenner ",
					"London History Atlas by Hugh Clout",
					"London Sight Unseen by Snowdon",
					"London Suburbs by Andrew Saint",
					"London Under London: A Subterranean Guide by Richard Trench"
					);
	var a;
	a=str[parseInt(Math.random()*11)];
	document.write(a)
};


function book4() {
	var str=new Array(
					"London: Biography of a City by Christopher Hibbert",
					"London: Places and Pleasures by Kate Simon",
					"London's Lost Riverscape by Chris Ellmers and Alex Werner",
					"London by Harry N. Abrams",
					"London Architecture: Features and Facades by Ben Weinreb",
					"London's Town Halls by English Heritage",
					"London's Pride: Glorious History of the Capital's Gardens by Mireille Galinou",
					"Lord Burlington's Town Architecture by Pamela Kingsbury",
					"Making the Metropolis by Stephen Halliday",
					"Newgate: London's Prototype of Hell by Stephen Halliday",
					"Number Ten Downing Street: The Story of a House by Christopher Jones"
					);
	var a;
	a=str[parseInt(Math.random()*11)];
	document.write(a)
};


function paper() {
    var str=new Array(
					"It's a book I think everyone should have. -- Robert Elms, BBC Radio London",
					"The photographs are enigmatically stark, the text rich in anecdotes. Long brings a genuine pleasure to his subject... and encourages his readers to look at London with an unceasing curiosity. -- The London Magazine",
					"This admirably structured and coherent book draws attention to the uncontrived diversity in London's architecture. -- Maxwell Hutchinson, past-President Royal Institute of British Architects",
					"A quirkier look at the subject...plenty of new places here for even the most knowledgeable Londoner to explore. -- Museum of London",
					"This lavishly illustrated book is a must-read for lovers of London. -- Good Book Guide",
					"A coruscating compendium of wacky facts...this must-read book is packed with terrific trivia. Long has unearthed enough information, trivia, news and history to entertain and entrance the reader for a long time.... Endless fun. -- Publishing News, Travel Special",
					"Fascinating and handsome and informative and all those things...a SPLENDID book. -- Robert Elms, BBC Radio London",
					"The Little Book of London from David Long may be little in size but it¹s big on information and my favourite trivia read this year. -- Sue Barker",
					"A fascinating guide...Long's a good storyteller and his conversational tone gives you the sense that he's there with you on your virtual tour of the city -- The Pass"
					);
	var a;
	a=str[parseInt(Math.random()*9)];
	document.write(a)
}
