$("document").ready(function()
{
  // stop the menu button mouse over
  /*
  $("div#menu a").css({background: "url('img/menu-bg.jpg') repeat-x 0px -60px"});
  
  // add new mouse over
  $("div#menu a").hover(
    function()
    {
      // move bg image down
      $(this).stop().animate({backgroundPosition:"(0px 0px)"}, 250);
    },
    function()
    {
      // move bg image up
      $(this).stop().animate({backgroundPosition:"(0px -60px)"}, 150);
    }
  );
  */
});
