[jQuery] Remove Parent not working in IE6

[jQuery] Remove Parent not working in IE6

Hi guys,
I cannot "remove" the parent of an element in IE6.  The behavior in IE6 is that only the first of the parents is getting removed and then it stops working.
Here is the code...
<script type="text/javascript" src="libs/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $("#trash").click(
        function()
        {
            $(this).parent().remove();
        }
    );
});
</script>
<body>
<div id="container">
    <div>This is div 1 <span id="trash">Del</span></div>
    <div>This is div 2 <span id="trash">Del</span></div>
    <div>This is div 3 <span id="trash">Del</span></div>
    <div>This is div 4 <span id="trash">Del</span></div>
</div><br clear="all">
Any ideas??
--
Gurpreet Singh