$(function () { $(".Customer .list li").mouseover(function () { var imgUrl = $(this).data("img"); var imgText = $(this).data("text"); $(this).addClass("on").siblings().removeClass("on"); $(".Customer .showInfo .imgBox img").attr("src", imgUrl); $(".Customer .showInfo .text").html(imgText); }); $(".project .type li").mouseover(function () { if (!$(this).hasClass("un")) { var index = $(this).index(); $(this).addClass("on").siblings().removeClass("on"); $(".project .imgList a").eq(index).addClass("on").siblings().removeClass("on"); } }); });