//
//
// nav links that are located at the top of the page
// 
//

function nav_links() {

	var i;
	var link = new Array();
	link[0]='<li><a title="Home" href="/stead.html">HOME</a></li>';
	link[1]='<li><a title="Back to Artists" href="/stead.html">ARTISTS</a></li>';
	link[2]='<li><a title="Back to Piercing" href="/stead.html">PIERCING</a></li>';
    link[3]='<li><a title="Contact" href="/contact.html">CONTACT</a></li>';
    link[4]='<li><a title="Links" href="/links.html">LINKS</a></li>';

	//link[3]='<li><a title="Contact" href="/contact.php">Contact</a></li>';
	//link[5]='<li><a title="News" href="/blog/">Blog</a></li>';

	// uncomment line below if nav menu is going to be displayed
	// on the right side of the page
	link.reverse();
	for ( i in link ) {
		document.write(link[i]);
	}
}


