$(document).ready(function(){
	 $.ajax({
	 	url: "inc/inc_twitter_content.php",  
		dataType: "html",  
		success: function(data){
			// Daten ausgeben
			$("#twitter_content").replaceWith(data);
			},
		error: function (XMLHttpRequest, textStatus, errorThrown){
			// Fehler-Behandlung
			$("#twitter_content").replaceWith("<li>Momentan kein Verbindung m&ouml;glich</li>");
			}
	});
});
