
/*

THIS .JS FILE REQUIRES THAT JAVASCRIPT
IS ENABLED ON THE CLIENT. IF NOT THEN THE
DEFAULT 'NOSCRIPT' QUOTE WILL BE INVOKED

*/


function randomQuote(){

	var randomQuoteNum = Math.floor(Math.random()*4);

	randomQuoteNum = 3; //THIS LINE ENSURES THAT THE NEW BOOK IS ALWAYS LISTED

	var randomQuoteQuote = new Array(9)
	
		randomQuoteQuote[0]="<p><a href='http://www.amazon.co.uk/Hitler-Emigres-Cultural-Britain-Refugees/dp/071266579X/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1241707323&amp;sr=1-1' rel='external' onclick='window.open(this.href); return false;' class='nothing'><img src='images/bookimage_hitler.png' alt='The Hitler Emigrés: The Cultural Impact on Britain of Refugees from Nazism' width='130' height='134' border='0' /></a></p>"; 
		randomQuoteQuote[1]="<p><a href='http://www.amazon.co.uk/Historians-Daniel-Snowman/dp/1403988056/ref=sr_1_4?ie=UTF8&s=books&qid=1241708437&sr=1-4' rel='external' onclick='window.open(this.href); return false;' class='nothing'><img src='images/bookimage_historians.png' alt='Historians' width='130' height='134' border='0' /></a></p>"; 
		randomQuoteQuote[2]="<p><a href='http://www.amazon.co.uk/Fins-Siecle-How-Centuries-1400-2000/dp/0300066872/ref=sr_1_5?ie=UTF8&s=books&qid=1241708437&sr=1-5' rel='external' onclick='window.open(this.href); return false;' class='nothing'><img src='images/bookimage_fins.png' alt='Fins de Siecle: How Centuries End, 1400-2000' width='130' height='134' border='0' /></a></p>"; 
		randomQuoteQuote[3]="<p><a href='http://www.amazon.co.uk/Gilded-Stage-Social-History-Opera/dp/1843544660/ref=sr_1_1?ie=UTF8&s=books&qid=1251190760&sr=8-1' rel='external' onclick='window.open(this.href); return false;' class='nothing'><img src='images/bookimage_gilded.png' alt='The Gilded Stage: The Social History of Opera' width='130' height='134' border='0' /></a></p>"; 

return randomQuoteQuote[randomQuoteNum];
}
document.write(randomQuote());