// JavaScript Document $(document).ready(function() { $(".image_hover").hover(function() { if(!$("#content").hasClass("image_1")) { $(this).find("img").each(function(i, image) { if(i != 0) { $(image).remove(); } }); var c_img = $(this).find("img").eq(0).clone(); var img_h = $(this).find("img").eq(0).height(); $(c_img).css({ "position" : "absolute", "display" : "none", "left" : "0", "top" : "0", "width" : $(this).find("img").eq(0).width() }); $(c_img).attr("src", $(c_img).attr("src").replace(".jpg", ".png")); $(this).append(c_img); $(c_img).stop().fadeIn(200); $(c_img).addClass("on"); } }, function() { if(!$("#content").hasClass("image_1")) { $(this).find("img").each(function(i, image) { if(i != 0) { $(image).remove(); } }); } }); });