
jQuery(function() {
	jQuery("div.containingTab").each(function() {
		jQuery("#tabs-" + jQuery(this).attr("id")).tabs("#panes-" + jQuery(this).attr("id") + " > div", {
			onClick: function (event, tabIndex) {
				init();
			}
		});
	});
});

// H � H E   D E R   S E I T E   S E T Z E N
////////////////////////////////////////////

function init() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		myHeight = document.documentElement.clientHeight;
	} else {
		myHeight = window.innerHeight;
	}
	document.getElementById('content').style.height = "";
	if (document.getElementById('content').offsetHeight <= myHeight - 305) {
		document.getElementById('content').style.height = (myHeight - 305) + "px";
	}
}

