$(document).ready(function() {
    $('#hellohype a').hover(function() {
        $(this).children('.details').children('.wrap').stop(true, false).animate({bottom:0, opacity:0.7});
    },
    function() {
        $(this).children('.details').children('.wrap').stop(true, false).animate({bottom:'-30px', opacity:0});
    });
});

