/* ------------------------------------------------------------------------ Class: popup Use: CODA style popup image on rollover Original Author: Stephane Caron (http://www.no-margin-for-errors.com) REVISED BY JONATHAN ATKINSON - ------------------------------------------------------------------------- */ $(document).ready(function(){ $(".popup a").hover(function() { $(this).next("em").stop(true, true).animate({opacity: "show", top: "-55"}, "slow"); }, function() { $(this).next("em").animate({opacity: "hide", top: "30"}, "fast"); }); });