window.onload = 
function(){
alltabs = document.getElementById('tabs').getElementsByTagName('dl')
for(i = 0; i < alltabs.length; i++){
   alltabs[i].className = "close"
   alltabs[i].onmouseover = function(){
    for(j = 0; j < alltabs.length; j++){
     alltabs[j].className = "close"
    }
    this.className = "open"
   }
}
}