$(function() {
	$('.ui-dialog-enabled a').each(function() {
		var dialog = $('<div></div>');

		var link = $(this).one('click', function() {
			dialog
				.load(link.attr('href') + ' .main-content', null, function() {
					dialog.dialog({
						title: link.attr('title'),
						width: 660,
						height: $(window).height() - 50
					});
					var contentHeight = dialog.contents().height();
					if (contentHeight < dialog.innerHeight()) {
						dialog.dialog('close');
						dialog.dialog({
							height: contentHeight + 100,
							closeText: 'Schließen'
						});
					}
				});

			link.click(function() {
				dialog.dialog('open');

				return false;
			});

			return false;
		});
	});
});
