IEURL = URL;
var autoParseToEnlarge = function()
{
	var elementsToEnlarge = $t( '*[class=picturesToEnlarge]' );
	elementsToEnlarge.forEach( function(el) {
		new lightBox( el );
	});
	var elementsToEnlarge = $t( '*[class=picturesToEnlargeMiddleToBig]' );
	elementsToEnlarge.forEach( function(el) {
		new lightBox( el, '/m/' );
	});
}

bodyLoad.add(
	function(){
		autoParseToEnlarge();
	}
)