function setupButtons() {
  $("img.button").each(function() {
    $(this).css("cursor", "pointer");

    var button_re = /(.*)_(normal|over|down)\.png$/;

    $(this).bind("mouseover", function() {
      if ($(this).attr("default_over"))
        $(this).attr("src", ($(this).attr("src").match(button_re)[1]) + "_" + $(this).attr("default_over") + ".png");
      else
        $(this).attr("src", ($(this).attr("src").match(button_re)[1]) + "_over.png");
    });
    $(this).bind("mouseout",  function() {
      if ($(this).attr("default"))
        $(this).attr("src", ($(this).attr("src").match(button_re)[1]) + "_" + $(this).attr("default") + ".png");
      else
        $(this).attr("src", ($(this).attr("src").match(button_re)[1]) + "_normal.png");
    });
    $(this).bind("mouseup",   function() { $(this).attr("src", ($(this).attr("src").match(button_re)[1]) + "_normal.png"); });

  });
}

$(document).ready(setupButtons);
