function FeaturedBook(){	var NUMBOOKS = 7	var bookPaths = new Array(NUMBOOKS);	var bookImages = new Array(NUMBOOKS);	var bookNames = new Array(NUMBOOKS);	var i = 0;		for(i = 0; i < NUMBOOKS; i++)	{		bookPaths[i] = new String();		bookImages[i] = new String();		bookNames[i] = new String();	}		bookPaths[0] = "http://www.kandmantiques.com/Books/Fenton1/FentonBookOne.html"	bookPaths[1] = "http://www.kandmantiques.com/Books/Fenton2/FentonBookTwo.html"	bookPaths[2] = "http://www.kandmantiques.com/Books/HallChina/HallBookTwo.html"	bookPaths[3] = "http://www.kandmantiques.com/Books/Fenton3/FentonBookThree.html"	bookPaths[4] = "http://www.kandmantiques.com/Books/HallChina/HallBookTwo.html"	bookPaths[5] = "http://www.kandmantiques.com/Books/HallChina/HallBookTwo.html"	bookPaths[6] = "http://www.kandmantiques.com/Books/HallChina/HallBookTwo.html"		bookImages[0] = "http://www.kandmantiques.com/Books/Fenton1907-1939-2.jpg"	bookImages[1] = "http://www.kandmantiques.com/Books/Fenton1939-198-2ndEd.jpg"	bookImages[2] = "http://www.kandmantiques.com/Books/HallChina3rdEd.jpg"	bookImages[3] = "http://www.kandmantiques.com/Books/FentonArtGlassCover.jpg"	bookImages[4] = "http://www.kandmantiques.com/Books/HallChina3rdEd.jpg"	bookImages[5] = "http://www.kandmantiques.com/Books/HallChina3rdEd.jpg"	bookImages[6] = "http://www.kandmantiques.com/Books/HallChina3rdEd.jpg"		bookNames[0] = "Fenton 1907-1939"	bookNames[1] = "Fenton 1939-1980"	bookNames[2] = "Hall China"	bookNames[3] = "Fenton Colors"	bookNames[4] = "Hall China"	bookNames[5] = "Hall China"	bookNames[6] = "Hall China"		i = Math.round(Math.random() * 10);									while(i >= NUMBOOKS)	{		i = Math.round(Math.random() * 10);	}	document.write("<a href=");	document.write("\"" + bookPaths[i] + "\">");	document.write("<img src=");	document.write("\"" + bookImages[i] + "\" alt=\"" + bookNames[i] + "\" ");	document.write("height=\"92\" width=\"72\" border=\"0\"><BR>" + bookNames[i] + "</a><BR>");}FeaturedBook();