Ext.onReady(function() {
    Ext.each(Ext.fly('content').select('a').elements, function(link) {
        if (typeof link.getAttribute('href') == 'string'
            && link.getAttribute('href').search(/\.jpg|\.png|\.JPG|\.png/) != -1) {
            link.setAttribute('rel', 'lightbox');
        }
    });
    Ext.ux.Lightbox.register('a[rel^=lightbox]', true);
});
