function BookList() {
	var obj;
	
	this.init = function(obj) {
		if(!obj) {
			obj = document.getElementById("books");
			var html = "";
			html+= "<img src=\"images/flag_books.gif\" width=\"107\" height=\"22\" alt=\"\">";
			html+= "<br><br>";
			
			// From Dust and Ashes
			html+= "<a href=\"http://www.triciagoyer.com/books_FromDustAndAshes.htm\" target=\"_blank\">";
			html+= "<img src=\"images/BookCover_DustAndAshes.jpg\" border=\"0\" width=\"86\" height=\"130\" alt=\"From Dust and Ashes\"><br>";
			html+= "<br>";
			html+= "<p>From Dust and Ashes:<br>A Story of Liberation</p>";
			html+= "</a>";
			
			// Night Song
			html+= "<!-- Night Song -->";
			html+= "<a href=\"http://www.triciagoyer.com/books_NightSong.htm\" target=\"_blank\">";
			html+= "<img src=\"images/BookCover_NightSong.jpg\" border=\"0\" width=\"86\" height=\"130\" alt=\"Night Song\"><br>";
			html+= "<br>";
			html+= "<p>Night Song:<br>A Story of Sacrifice</p>";
			html+= "</a>";
			
			// Dawn of A Thousand Nights
			html+= "<!-- Dawn of A Thousand Nights -->";
			html+= "<a href=\"http://www.triciagoyer.com/books_DawnThousandNights.htm\" target=\"_blank\">";
			html+= "<img src=\"images/BookCover_DawnThousandNights.jpg\" border=\"0\" width=\"86\" height=\"130\" alt=\"Dawn of A Thousand Nights\"><br>";
			html+= "<br>";
			html+= "<p>Dawn of a Thousand Nights:<br>A Story Of Honor</p>";
			html+= "</a>";
			
			// Arms of Deliverance
			html+= "<!-- Arms of Deliverance -->";
			html+= "<a href=\"http://www.triciagoyer.com/books_ArmsOfDeliverance.htm\" target=\"_blank\">";
			html+= "<img src=\"images/BookCover_ArmsOfDeliverance.jpg\" border=\"0\" width=\"86\" height=\"130\" alt=\"Arms of Deliverance\">";
			html+= "<br>";
			html+= "<p>Arms of Deliverance:<br>A Story of Promise</p>";
			html+= "</a>";
			
			obj.innerHTML = html;				
		}
	}
}