function rollOver(obj){
    if (!obj.onmouseout) {
        obj.onmouseout = rollOut;
    }
    obj.style.backgroundColor = '#FF6666';
    obj.style.color = '#555555';
    obj.style.textDecoration = 'none';
}

function rollOut(){
    this.style.backgroundColor = '';
}
