var linkhref  = new Array();
var linkdesc  = new Array();
var cnt = 0;

linkhref[cnt] = "/index.html"
linkdesc[cnt] = "Home"
cnt = cnt + 1;

linkhref[cnt] = "/footprints"
linkdesc[cnt] = "Footprints"
cnt = cnt + 1;

linkhref[cnt] = "/random"
linkdesc[cnt] = "Random links"
cnt = cnt + 1;

linkhref[cnt] = "/recipe"
linkdesc[cnt] = "Recipes"
cnt = cnt + 1;

linkhref[cnt] = "/wishlist"
linkdesc[cnt] = "Wish list"
cnt = cnt + 1;

linkhref[cnt] = "/lifelist"
linkdesc[cnt] = "Life list"
cnt = cnt + 1;

linkhref[cnt] = "/books.html"
linkdesc[cnt] = "Books"
cnt = cnt + 1;

linkhref[cnt] = "/photo"
linkdesc[cnt] = "Photos"
cnt = cnt + 1;

linkhref[cnt] = "/about.html"
linkdesc[cnt] = "About"
cnt = cnt + 1;

linkhref[cnt] = "/contact.php"
linkdesc[cnt] = "Contact"
cnt = cnt + 1;

document.write('<div><ul id="navlist">');
for (cnt = 0; cnt <linkhref.length; cnt++) {
	document.write('<li>');
	if (linkhref[cnt]==window.location.pathname)
		document.write('<strong>');
	document.write('<a href="' + linkhref[cnt] + '">');
	document.write(linkdesc[cnt]);
	if (linkhref[cnt]==window.location.pathname)
		document.write('</strong>');
	document.write('</a>');
	document.write('</li>');
	}
document.write('</ul></div>');