$(document).ready(function() {
  // Add hover effects to the navigation items
  $('#menu ul li:not(.active) img').hover(
    function() { $(this).css('margin-top', '-26px'); }, 
    function() { $(this).css('margin-top', '0px'); }
  );
});