// JavaScript Document

var currentLocation = document.location.href;
var targetNode;

function highlightCurrentLnk(){

targetNode = document

links = targetNode.getElementsByTagName("a");

	// Search thorugh all links
	for (i=0; i<links.length; i++) {
		linkHref = links[i].href;
		
		if (linkHref == currentLocation) {
			// Set class for different browsers, if link is this link
			links[i].setAttribute("className", "currentLnk");
			links[i].setAttribute("class", "currentLnk");      
		}
	}

}




