  /* jQuery Code for menu */
  $(document).ready(function(){
    $(".menu_item").hover(
      // over
      function () {
	$(this).stop();
	$(this).animate({paddingLeft:"10px"}, 0);
      }, 

      // off
      function () {
	$(this).stop();
	$(this).animate({paddingLeft:"0px"}, 0);
      }
    );
  });

