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