function BookLink(url, txt, img){
	this.url = url;
	this.txt = txt;
	this.img = img;
}
var _links = new Array();
_links[0]  = new BookLink("ay_lomg1.html", "Leaves of Morya\'s Garden I","leaves_of_moryas_1924_i.gif");
_links[1]  = new BookLink("ay_lomg2.html", "Leaves of Morya\'s Garden II","leaves_of_moryas_1925_i.gif");
_links[2]  = new BookLink("ay_community.html","New Era Community","new_era_community_1926_i.gif");
_links[3]  = new BookLink("ay_agniyoga.html","Agni Yoga","agni_yoga_1929_i.gif");
_links[4]  = new BookLink("ay_infinity1.html","Infinity I","infinity_1930_i.gif");
_links[5]  = new BookLink("ay_infinity2.html","Infinity II","infinity_1930_i.gif");
_links[6]  = new BookLink("ay_hierarchy.html","Hierarchy","hierarchy_1931_i.gif");
_links[7]  = new BookLink("ay_heart.html","Heart","heart_1932_i.gif");
_links[8]  = new BookLink("ay_fw1.html","Fiery World I","fiery_world_1933_i.gif");
_links[9]  = new BookLink("ay_fw2.html","Fiery World II","fiery_world_1934_i.gif");
_links[10] = new BookLink("ay_fw3.html","Fiery World III","fiery_world_1935_i.gif");
_links[11] = new BookLink("ay_aum.html","Aum","aum_1936_i.gif");
_links[12] = new BookLink("ay_brotherhood.html","Brotherhood","brotherhood_1937_i.gif");
_links[13] = new BookLink("ay_supermundane1.html","Supermundane I","supermundane_I_i.gif");
_links[14] = new BookLink("ay_supermundane2.html","Supermundane II","supermundane_II_i.gif");
_links[15] = new BookLink("ay_supermundane3.html","Supermundane III","supermundane_III_i.gif");
_links[16] = new BookLink("ay_supermundane4.html","Supermundane IV","supermundane_IV_i.gif");

_links[17] = new BookLink("ay_loHR1.html","Letters of Helena Roerich, Vol. I","letters_helena1929-1938_i.gif");
_links[18] = new BookLink("ay_loHR2.html","Letters of Helena Roerich, Vol. II","letters_helena1935-1939_i.gif");
_links[19] = new BookLink("ay_crossroads.html","On Eastern Crossroads","crossroads_i.gif");
_links[20] = new BookLink("ay_FoB.html","Foundations of Buddhism","FoB_i.gif");
_links[21] = new BookLink("ay_glossary.html","Agni Yoga Glossary","glossary_i.gif");
_links[22] = new BookLink("ay_lomg1_1953.html","Leaves of Morya\'s Garden I","leaves_of_moryas_1924_i.gif");

function writeImg(ndx){
	var s="<IMG SRC='ay_book_images/"+_links[ndx].img+"' BORDER=1>";
	document.write(s);
}
function writeLinks(ndx){
	var s="";
	for(var i=0; i<_links.length; i++){
		if(i==17) s+="<IMG SRC=\"gifs/type_emb4.gif\"></IMG><BR>";
		if(i!=ndx)
			s+="\n<NOBR><A HREF='javascript:parent.document.location.href=\""+_links[i].url+"\"' CLASS='sideBookList' onMouseOver='status=\"\"; return true;' onMouseOut=''>"+_links[i].txt+"</A></NOBR><BR>";
		else
			s+="\n<NOBR><SPAN CLASS='sideBookListSel'>"+_links[i].txt+"</SPAN></NOBR><BR>";
	}
	document.write(s);
}
