// Language: JavaScript
// Author: Matthias Reichle info[at]mreichle[dot]de
// Description: adds rel="lightbox" to all links to images
// --------------------------------------------------
function alterImageLinks(){

//$$('#content > p > a').each(function(node){ node.hide() });
//$$('div#content > p > a').each(function(node){ node.writeAttribute('rel', 'lightbox') });

}

document.observe('dom:loaded', function () { new alterImageLinks(); });
