$(function() {
	$("a[href^=javascript:popup(][href*='image')], a[href^=javascript:openPopImg(]").map(function () {
		var text = $(this).attr('href');
		text = text.substring(text.indexOf("'")+1);
		text = text.substring(0, text.indexOf("'"));
		$(this).attr('href', text);
		$(this).attr('rel', 'lightbox');
	});
	$('a[rel=lightbox]').lightBox();
});
