/*! copyright(c) FIVESTONE. All right Reserved. ÆÄÀ̺꽺ÅæÀÇ Çã¶ô¾øÀÌ ¹«´Üº¹Á¦ ¹× »ç¿ë ÇÒ ¼ö ¾ø½À´Ï´Ù.*/ $(function(){ $("#slidebanner ul li").each(function(){ $(this).hover(function(){ $(this).find("div").stop(true, true).animate({top: "62%"}, 250, function() { //callback $(this).css("opacity", "1"); }); }, function(){ $(this).find("div").stop(true, true).animate({top: "78%"}, 250, function() { //callback $(this).css("opacity", "1"); }); }); }); });