/*--------------------------------------------------------------------------
*	Display the navigation header for Dr Oud's Website
*   	A literal string is passed to the function to indicate which of
*   	the Nav Links to skip. If a blank is passed they are all displayed
*	Copyright (c) 2010 Spyros Camateros, All rights reserved worldwide
*-------------------------------------------------------------------------*/
		/* Array of link literals to display */
		var nav_literal	= [
            		"Home",
			"Products",
			"About Dr. Oud Press",
			"My Workshop",
			"Hankey Ouds",
			"Nahhat Ouds",
			"Links",
			"Contact"	
		];
		var nav_link = [
			"index.html",
			"products.html",
			"about.html",
			"workshop.html",
			"hankey_ouds.html",
			"Nahhat.html",
			"oud_links.html",
			"contact.html"
		];
		var nav_MAXTOSHOW = 8;	/* How many in the array */

/*-------------------------------------------------------------------------*/
	function nav_display( skipthis )
	{
		var i;
		
		document.write("<div><!--navigation--><ul>");
		
		for (i=0; i < nav_MAXTOSHOW; ++i)
		{
		  if (skipthis != nav_literal[i])
		  {
			document.write("<li class='nav'><a href=");
		        document.write("'" + nav_link[i] + "'>" + nav_literal[i]);
			document.write("</a></li>");
		  }   
		}
		
		document.write("</ul></div><!--end navigation-->");
	}

