$(function() {
	
	$('a.zoom').colorbox({
		current: '',
		close: '',
		previous: '',
		next: '',
		slideshowStart: '',
		slideshowStop: '',
		maxWidth:"90%",
		maxHeight:"90%"
	});

	var flashContainer = $('.flash-container');
	
	var initializeFlashes = function(target) {
		if (!target) target = flashContainer;
		target.find('.flash').each(function() {
			var flash = $(this);
			if (!flash.find('.close').size()) {
				var closeIcon = flash.append('<a class="close ui-icon ui-icon-circle-close"><tal:block i18n:translate="">schließen</tal:block></a>').children(':last');
				closeIcon.click(function() {
					flash.slideUp(function() {
						flash.remove();
					});
				});
			}
		});
	}
	initializeFlashes();
});
