if (document.getElementsByTagName) {
	anchorLinks = $("more").getElementsByTagName("a");
	for (i=0; i<anchorLinks.length; i++) {
		var theLink = anchorLinks[i].href;
		if (theLink.indexOf("http://") > -1 ) { theLink = theLink.substring( theLink.indexOf("hotdesign.com")+9, theLink.length ); }
		if (theLink.length > 4 && document.location.href.indexOf(theLink) > -1) { anchorLinks[i].parentNode.innerHTML = anchorLinks[i].innerHTML; }
	}
}
