function setupPhotoAlbumMediabox() {
	$$('.thumbnail-frame a').each(function(imageLink){
		var htmlURL=imageLink.getAttribute('href');
		var imageURL=htmlURL.replace(/html/, 'jpg');
		var theTitle=imageLink.getNext('p.thumbnail-caption').get('text');
		imageLink.setAttribute('href', imageURL);
		imageLink.setAttribute('rel', 'lightbox[photoSet]');
		imageLink.setAttribute('title', theTitle);
	});
	return;
}

window.addEvent('domready', function(e){
	setupPhotoAlbumMediabox();
	Mediabox.scanPage();
});
