$(function() { $(".navGnb li[class!=gnbOn]") .click(function() { self.location.href = $(this).find("a").attr("href"); }) .mouseover(function() { if($(this).hasClass("currentGnb")) return; $(this).addClass("gnbOn"); $(this).find("img").attr("src", $(this).find("img").attr("src").replace(".gif", "On.gif")); }) .mouseout(function() { if($(this).hasClass("currentGnb")) return; $(this).removeClass("gnbOn"); $(this).find("img").attr("src", $(this).find("img").attr("src").replace("On.gif", ".gif")); }); });