$(function () {
    $('.popup_trigger', this).hover(function() {
        var img_height = $('.popup_container', this).parent().height()-20;
        $(".popup_container", this).height(img_height);
        
        if ($(".popup_container", this).is(":hidden")) {
            $('.popup_container', this).show('slide', {direction: 'left'}, 200);
        }
    },function() {
        if ($(".popup_container", this).is(":visible")) {
            $('.popup_container', this).hide('slide', {direction: 'left'}, 200);
        }
    });    
});
