IB.actus = {fluid:{},e:{}};

IB.actus.init = function()
{
    
    
    $('div.actus div.image img').load(function()
    {
        $(this).each(function()
        {
            var e = $(this);

            var h = e.height() / 2;

            e.css({top:'49%','margin-top':'-'+h+'px'});
        });
        
        
    });
    
};

