[jQuery] Browser compatibility

[jQuery] Browser compatibility


This code works in firefox but not in ie (6.0) :
<div class="bookDiv">
<div class="theHover" onmouseover="$
(this).parent().find('.bookCoverTxt').fadeIn('medium')"></div>
<img src="img" border="0" class="bookCover" />
<div class="bookCoverTxt">
<strong>blabla</strong>
</div>
</div>
the hover div (invisible) set to fill the whole bookDiv... The code
should show the bookCoverTxt div on mouseover..
What should i do?