
function menuRollOver( tableCellRef ) {
    tableCellRef.style.backgroundColor = '#00FFBB';
}

function menuRollOut( tableCellRef ) {
    tableCellRef.style.backgroundColor = '#00DDBB';
}

function menuClick( tableCellRef, address ) {
    menuRollOut( tableCellRef );
    window.location.href = address;
}
