function putMBRequirements() {
	try {
			jQuery('span.mbinit').each(
				function() {
					imgTitle = jQuery(this).attr('title');
					jQuery('img',this).each(function() {
						orgImage = jQuery(this).attr('src');
						bigImage = orgImage.replace('.jpg','-gr.jpg');
						bigImage = bigImage.replace('images/','images/vergroesserung/');
					});
					jQuery(this).html(
						' <a href="' + bigImage + '" class="multibox" title="' + imgTitle + '" id="linkohne">' + jQuery(this).html() + '</a>'
					);
				}
			);
	}
	catch (e) {
		//Fehlerbehandlung
	}
}

function loadMultibox() {
	 window.addEvent('domready', function(){
	 	putMBRequirements();
		var box = new multiBox('multibox', {
			overlay: new overlay()
		});
	});
}
