$(function() {
  jQuery.each($("#menu-container a img"), function() {
    $(this).hover(
      function() {
        $(this).attr("src", "img/m" + $(this).attr("id") + "_on.gif");
      },
      function() {
        $(this).attr("src", "img/m" + $(this).attr("id") + "_off.gif");
      }
    );
  });

  $("#me a").click(function() {
    window.open("img/montana.jpg");
    return false;
  });
});
