var links = [
	 {"name":"Home", "url":"index.html"}
	,{"name":"Encyclopedia", "url":"encyclopedia.html"}
	,{"name":"Books", "url":"catalogue.html"}
	,{"name":"Poetry & Quotations", "url":"poetry_and_quotations.html"}
	,{"name":"Full Price List", "url":"price_list.html"}
	,{"name":"Magazine Subscription", "url":"magazine_subscription.html"}
]


document.writeln('<div style="text-align: center;">');
	document.writeln('<img src="images/logo.gif" /><br />');
document.writeln('</div>');
document.writeln('<hr />');

//output the links
for(var i=0 ; i < links.length ; i++) {
	document.writeln("<a href='" + links[i].url + "'>" + links[i].name + "</a>\n");
	
	//add pipe to all but last link
	if((i + 1) != links.length)
		document.writeln(" | ");	
}