//Main Nav Image rollovers
$(function() {
  $("#nav img.hover").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("_over."));
    $(this).css('cursor','pointer')
  }, function() {
    $(this).attr("src", $(this).attr("src").split("_over.").join("."));
  });
});


