jQuery(document).ready(function() {
	jQuery("#loadnewshere").html("<p>Lade Termine ...</p>")
		jQuery.ajax({
	        type: "GET",
	        url: "/56.0.html",
	        success: function(returnValue) {
	            jQuery("#loadnewshere").html(jQuery(returnValue).find(".newselement").get());
	        },
	        error: function(returnValue) {
	            alert("");
	        }
	    });
	
});