
function changeBorder(node) { 
    node.onmouseover=function() { this.className+=" over"; }
    node.onmouseout=function() { this.className=this.className.replace(" over", "");}
}


