
window.addEvent('domready', doGallery);
function doGallery() {
	if ($('gallery')) {
	imgs = $$('.gallery a');
	imgs.each(function(a) {
		a.addEvent('click', function (e) {
			window.open(a.href, 'image', 'width=500,height=500,toolbar=1,resizable=1')
			e.returnValue = false;
			try {	e.preventDefault();	} catch (err) {	}	// FF/Safari
			return false;	// IE
		});
	});
	} // if gallery
}

