$(document).ready(function() {
    $('.js-preview-image').hover(function () {
     $("img", this).stop().animate({top:"-41px"},{queue:false,duration:300});
         }, function() {
     $("img", this).stop().animate({top:"0px"},{queue:false,duration:300});

    });

            $('a.js-external').click(function() {
                window.open($(this).attr('href'));
                return false;
            });
});