$(document).ready(function() {
	var hoehe = $("#content_main").height();
	var hoehe_min = 1362;
	var offset;
	var top_position;

    if(hoehe >= hoehe_min) {
        //  $("#content_main").text("Hoehe (" + hoehe + ") groesser als hoehe_min");
        offset = $("#content_main").offset();
        top_position = offset.top + 50;
    } else {
        //  $("#content_main").text("Hoehe (" + hoehe + ") kleiner als hoehe_min");
        hoehe = hoehe_min;
        top_position = 0;
    }

	$("#footer").css({
		'position':'absolute',
		'top':hoehe + top_position,
		'left':0
	});

});
