$(document).ready(function() {
    $(this).run();
});

jQuery.fn.run = function() {
    
    var context = this;
    
    $.ifixpng('../img/blank.gif');
    $('*:not(.noifixpng)', context).ifixpng();
    
    if ($.browser.msie == true) {
        $('.rb-t, .rb-b').each(function() {
            $(this).width($(this).siblings('.rb-m').innerWidth());
        });
        $('#promo-name-i').width($('#promo-name-n').innerWidth()+6);
    }
    
    return this;
    
};
