jQuery(function() {
    $('img[@src^="assets/images/"]' + ".cpu").each(function(){
        $(this).before($(document.createElement("a")).addClass("cpu").attr({href: $(this).attr('src'), rel: "lightbox"}).append($(this).clone(true)));
        $(this).remove();
    });
    $('img[@src^="assets/images/"]' + ".cpu_a").each(function(){
        $(this).before($(document.createElement("a")).addClass("cpu_a").attr({href: $(this).attr('src').replace(/(\.png|\.jpe?g|\.gif)/, "_a$1"), rel: "lightbox"}).append($(this).clone(true)));
        $(this).remove();
    });
    $('a.cpu[@rel*=lightbox]').lightBox();
    $('a.cpu_a[@rel*=lightbox]').lightBox();
});


