function resizeContentArea() {
    var widthCA = $('body').width()-250; // Max width for the ContentArea
    $('#aussenrahmen').css('min-width', 1000);
    if (widthCA > 800) {
	  $('#rahmen_content').css("width", 800);
	} else if (widthCA < 760) {
	   $('#rahmen_content').css("width", 760);
	} else {
		$('#rahmen_content').css({'width' : widthCA}); 
	}
}
