¿Cómo puedo desvincular un mouseover en jQuery para un TD dentro de un TR?

Aquí está mi HTML:

<table id="myTable">
    <tr class="myTr">
        <td>
            CELL 1
        </td>
        <td>
            Cell 2
        </td>
        <td class="notThis">
            Cell 3
        </td>
    </tr>
    <tr class="myTr">
        <td>
            2- CELL 1
        </td>
        <td>
            2- Cell 2
        </td>
        <td>
            2- Cell 3
        </td>
    </tr>
</table>

<div id="myDiv">CONSOLE</div>

Y mi Javascript:

$(document).ready( function() {  
    $(".myTr").mouseover( function() {
        $("#myDiv").html( "OVER" );
    } );
});

Lo quiero para que cuando mueva el mouse sobre la celda "notThis", el mouseover no se active. Tengo un violín configurado para probar:http: //jsfiddle.net/S7bfH/3

Gracia

Respuestas a la pregunta(3)

Su respuesta a la pregunta