window.addEvent('load', function() {
	// Add captions to the bottom of slimboxes
	$$('.slimbox img').each(function(el) {
		var parentNode = el.getParent();
		if (parentNode.title != '') {
			var width = el.getAttribute('width');
			if(!width) width = el.width;
			// get parent A
			new Element('p').setText(parentNode.title).injectAfter(el);
			// set width of the top div
			parentNode.getParent().setStyle('width', width+'px');
			parentNode.getParent().addClass('slimbox-container');
		}
	});
});
