
// If you wish to use this script for non-commercial purposes, please extend the author the courtesy of crediting him and
// providing a link to his site - http://www.markeverett.com

// Unauthorised use of this script for commercial purposes is prohibited.
// Please contact the author at mark AT markeverett D0T com to request authorisation.

// In all cases this work remains the copyrighted property of Mark Everett

// _______________________________________________________________

// Title : Current page link highlighter v1
// Author : Mark Everett
// Website : www.markeverett.com
// Copyright © Mark Everett 2004 all rights reserved
// _______________________________________________________________


function removePageLink () {
	linkSpan = document.getElementById("sitelinks");
	pageLinks = linkSpan.getElementsByTagName("a");
	
	if (location.href.indexOf("?") > -1) {
		theHref = location.href.substring(0,location.href.indexOf("?"));
	} else {
		theHref = location.href;
	}
	for (i = 0; i < pageLinks.length; i ++) {
		if (pageLinks[i].href == theHref) {
			linksPtag = pageLinks[i].parentNode;
			x = linksPtag.replaceChild(pageLinks[i].firstChild, linksPtag.firstChild)
			linksPtag.style.backgroundColor = "#f9f8f4";
			linksPtag.style.color = "#999570";
		}
	}
}
