[jQuery] Problem Finding Children

[jQuery] Problem Finding Children


I need to fade the image associated to the inputs that have been
checked.
Jquery:
$('input:checked').each(function(k,s){
        $( "label[@for='"+s.id+"']" )
.find(" > span > div > img" ).fadeTo("fast",0.5);
});
Sample html:
<td id="Cell.1.0" style="vertical-align: Bottom;">
    <div></div>
    <input type="checkbox" name="myName" id="_Q0_C1" class="mrMultiple"
style="" value="__1024" checked="checked">
        <label for="_Q0_C1">
            <span class="mrMultipleText" style="">
                <div style="">
                    Sample Text<br/>
                        <img border="0" class="clickhere" src="_1024.jpg"/>
                </div>
            </span>
        </label>
    </input>
</td>