/*
 * Script to convert all img to slimbox
 * @author Juan Londono
 */

window.addEvent('domready', function() {
    //var images = $$('#main img.popup'); //Only images with class popup will popup
    var images = $$('#main img'); //All images to popup
    images.setStyle('cursor', 'pointer');
    images.slimbox(null, function(el) {
        var src = el.src.match('^[^&]*'); //Remove size from src to use full size image on popup
        if (!src) {
            src = el.src;
        }
        return [src, el.title];
    });
});