following up the post from earlier today, Make DOM elements hoverable using Prototype, here’s the equivalent javascript code using jQuery instead of Prototype (Uses the same example as in the previous post [a list]).

$(document).ready(function() {
  $('.hoverable > *')
    .mouseover(function() { $(this).addClass('hover') })
    .mouseout(function() { $(this).removeClass('hover') })
});