/* get all the images which have a rel=lightbox */

window.addEvent('domready', function(){
    
    $$('a[rel^=lightbox]').each(function(imageAnchor) {
        var zoomIcon = new Element('img', {
            'class' : 'zoom_icon',
            src : 'tl_files/leder-gaukler/images/zoom_icon.png',
            alt : ''
        });
        
        zoomIcon.inject(imageAnchor);
    });
});
