$(document).ready(function() {
	$("#link_intr").click(function(event) {
		event.preventDefault(); 
		$("#info_intr").slideToggle(100);
	});
	$("#close_intr").click(function() {
		$("#info_intr").slideToggle(100);
	});
});


//
// Bringt den Hintergrund auf richtige Höhe
//
$(document).ready(function() {
	var gesamthoehe = $(document).height();
	$("#Rahmen").animate({
		height: gesamthoehe + "px"
		}, 0);
});
$(window).load(function () {
	var gesamthoehe = $(document).height();
	$("#Rahmen").animate({
		height: gesamthoehe + "px"
		}, 0);
});

