var current_page = '';
$(document).ready(function() {
  $("div#buttons a img").mouseover(function() {
    src = $(this).attr('src');
    if (src.substr(src.length-9, src.length) == "_over.gif") {
      current_page = src;
    } else {
      src = src.substr(0, src.length-4) + '_over.gif';
      $(this).attr('src', src);
    }
  });

  $("div#buttons a img").mouseout(function() {
    src = $(this).attr('src');

    if (src != current_page) {
      src = src.substr(0, src.length-9) + '.gif';
      $(this).attr('src', src);
    }
  });
});
