function evtLoad(){
    return;
}
function evtDomready() {
    $$('table.specs td').each(function(e,i){
        
        e.addEvent('mouseover',function(){
            e.getParent().getChildren('td').setStyle('border-bottom','1px solid #F7D117');
        })
        e.addEvent('mouseout',function(){
            e.getParent().getChildren('td').setStyle('border-bottom','1px solid white');
        })
    })
}

