<PUBLIC:ATTACH event="oncontentready" handler="getHref" />
<PUBLIC:ATTACH event="onmouseover" handler="over" />
<PUBLIC:ATTACH event="onmouseout" handler="out" />
<PUBLIC:ATTACH event="onclick" handler="gohref" />

<SCRIPT>
var goToThisPlace = null;
function getHref(){
goToThisPlace = this.firstChild.getAttribute('href');
}

function over() {
window.status=goToThisPlace;
this.style.cursor='hand'
this.style.backgroundColor='silver'
}

function out() {
window.status='';
this.style.backgroundColor='white'
}

function gohref(){
location.href=this.firstChild.getAttribute('href')
}
</SCRIPT>