var cam_code = request["campaign"];
var current_page_name = getPageName();	//Strore the current page name without the file extension .ie.

//Add Mandatory Links
links = 	'<a href="index.html" class="lnavoff">Education Home &raquo;</a>'
		    +'<br>'
		    +'<br><a href="/solutions/education/netprep.html" class="lnavoff">NetPrep &raquo;</a>'

			
//Add Optional Second Level Links - Only if on a page that needs second level links
if ( (current_page_name == 'netprep')	||  (current_page_name =='edu_npbackground') || (current_page_name =='edu_ccontent') || (current_page_name =='edu_rtc') ){
links +=    '<br>&nbsp;&nbsp;<a href="/solutions/education/edu_npbackground.html" class="lnavoff">NetPrep Background &raquo;</a>'
 	    	+'<br>&nbsp;&nbsp;<a href="/solutions/education/edu_ccontent.html" class="lnavoff">NetPrep Content &raquo;</a>'
	     	+'<br>&nbsp;&nbsp;<a href="/solutions/education/edu_rtc.html" class="lnavoff">Regional Training Centres &raquo;</a>'
			}
			
//Add Mandatory Links 			
links +=     '<br><br><a href="/solutions/education/edu_partners.html" class="lnavoff">Academia Resellers &raquo;</a>'
		    +'<br><br><a href="/solutions/education/edu_casestudies.html" class="lnavoff">Case Studies &raquo;</a>'		
			


			
document.write(links)			

//need square bracket to access array not "()" or ns4 thinks that a function is being accessed instead of the array position
current_href = document.location.href;

for (var i = 0; i < document.links.length; i++) {		//loop through link array

	if(document.links[i].className == "lnavoff"){		//check for Side Nav Links, they all are set to a class of "lnavoff".		
		//Highlight the ActiveLink
		if (document.links[i].href == current_href){	//For Each Link - Check for anchor href match with current page href
			document.links[i].className = "lnavon"				
		}
	}		
  }