Hejsan!
<head>
<script type="text/javascript">
var cur = null;
window.onload = function(){
var lnk = document.links,
len = lnk.length;
while (len--){
lnk[len].onfocus = function(){
if (cur){
cur.style.backgroundColor = "white";
}
(cur = this).style.backgroundColor = "gray";
}
}
}
document.onmousedown = function(e){
e = e ? e.target.nodeName : window.event ? window.event.srcElement.tagName : null;
if (e && cur && e.toLowerCase() != "a"){
cur.style.backgroundColor = "white";
cur = null;
}
}
</script>
</head>
