window.onload = function() {
		removeCurrent();
	};

function removeCurrent() {
	if (document.getElementById('infoList2')) {
		var title = document.getElementsByTagName('H1')[0].firstChild.nodeValue;
		//alert("title = " + title);
		var anc = document.getElementsByTagName('A');
		for (i=0; i<anc.length; i++) {
			//alert("anc txt = " + anc[i].firstChild.nodeValue);
			if (anc[i].firstChild.nodeValue == title) {
				anc[i].parentNode.parentNode.removeChild(anc[i].parentNode);
			}
		}
	}
}