	
//==========================================================================================
//
// siteNavigation.js 
// Provides: Site navigation menu items
//
//==========================================================================================


	window.onload = load;
	 
//==========================================================================================

	function MainNavigation() {
		
		var panel = document.getElementById("site_nav");
		panel.className = "site_navigation";
		
		var a1Text = document.createTextNode("Home");
		var a1Graph = document.createElement("a");
		a1Graph.appendChild( a1Text );
		a1Graph.href = "http://walks4softies.co.uk/";
		a1Graph.title = "walks4softies home page";
		panel.appendChild( a1Graph );
		
		var newText1 = document.createTextNode(" - ");
		panel.appendChild(newText1);
		
		var a2Text = document.createTextNode("Find Walks");
		var a2Graph = document.createElement("a");
		a2Graph.appendChild( a2Text );
		a2Graph.href = "http://walks4softies.co.uk/scripts/walk_filter.pl";
		a2Graph.title = "Find a walk on walks4softies";
		panel.appendChild( a2Graph );
		
		var newText2 = document.createTextNode(" - ");
		panel.appendChild(newText2);
		
		var a3Text = document.createTextNode("Map");
		var a3Graph = document.createElement("a");
		a3Graph.appendChild( a3Text );
		a3Graph.href = "http://walks4softies.co.uk/map/index.html";
		a3Graph.title = "Find a walk on our interactive map";
		panel.appendChild( a3Graph );
		
		var newText3 = document.createTextNode(" - ");
		panel.appendChild(newText3);
		
		var a4Text = document.createTextNode("Contact Us");
		var a4Graph = document.createElement("a");
		a4Graph.appendChild( a4Text );
		a4Graph.href = "http://walks4softies.co.uk/feedbk.html";
		a4Graph.title = "Feedback, subscribe or unsubscribe";
		panel.appendChild( a4Graph );
		
		var newText4 = document.createTextNode(" - ");
		panel.appendChild(newText4);
		
		var a5Text = document.createTextNode("More");
		var a5Graph = document.createElement("a");
		a5Graph.appendChild( a5Text );
		a5Graph.href = "http://walks4softies.co.uk/more.html";
		a5Graph.title = "Links, walking for health, sponsor a walk and more";
		panel.appendChild( a5Graph );
				
	};
	
	
//==========================================================================================	

				
	function Copyright() {
	
		var panel = document.getElementById("copyright");
		
		var a1Text = document.createTextNode( copyRightString );
		var a1Graph = document.createElement("a");
		a1Graph.appendChild( a1Text );
		a1Graph.href = "http://walks4softies.co.uk/copy.html";
		a1Graph.title = "walks4softies copyright statement";
		panel.appendChild( a1Graph );
	
	};
	
	
//==========================================================================================	

				
	function ArticleNavigation() {
	
		var panel = document.getElementById("article_link");
		
		//var a1Text = document.createTextNode("some text");
		//var a1Graph = document.createElement("a");
		//a1Graph.appendChild( a1Text );
		//a1Graph.href = "http://walks4softies.co.uk/";
		//a1Graph.title = "walks4softies some text";
		//panel.appendChild( a1Graph );
		
	
	};
	
	
//==========================================================================================	

	function load() {
	
		Initialise();
		MainNavigation();
		Copyright();
		ArticleNavigation();
		
	}



//==========================================================================================	

