// Automatically add images to "A" tags containing images
window.addEvent('domready', function() {
	var links = $(document.body).getElements('a');
	links.each(function(item, key) {
		if (item.getElements('img[class!=toolTip]').length > 0 && item.get('title') != 'no-lightbox') {
			item.set('rel', 'lightbox-photography');
		}
	});
	Slimbox.scanPage;
});

window.addEvent('load', function() {
	if (!Browser.Engine.trident) {
		var newDiv = new Element('div', {'class': 'toolTipSun'});
		$$('.tool').adopt(newDiv);
		tips.options.offset = {'x': 35, 'y': 20};
	} else {
		$$('.toolTip').set('title', '');
	}
});