/*
$(document).ready document.observe('dom:loaded', function () {
    $$('#left a[class^=lightbox]').each(function(s) {
        s.rel = 'lightbox';
    });
});
*/

Shadowbox.init();

$(document).ready(function() {
	$('a[class^=lightbox]').each(function() {
		this.rel = $(this).attr('class');
	});
});


