// <![CDATA[			
function doMapLinks() {
if (!document.getElementsByTagName) return false;
	var anchors = document.getElementsByTagName('a');
	for (var i=0; i<anchors.length; i++){
		var anchor = anchors[i];
		var relAttribute = String(anchor.getAttribute('rel'));
		if (anchor.getAttribute('href') && (relAttribute.toLowerCase().match('map'))){
			anchor.setAttribute('href','#top');
		}
	}
}

function customOnLoad() {
		doMapLinks();
}

window.onunload = function() {
	GUnload();
}
// ]]>
