function loadArticle(article) {
	if(article > 0) {
		var ajax = new Ajax.Request('/_FULL_ARTICLE_' + article + '.php', {
			method: "GET",
			onSuccess: (function(transp) {
				$('_article_' + this).innerHTML = transp.responseText;
			}).bind(article),
			onFailure: function() {
				alert('Der von dir gewünschte Tag konnte wegen eines Fehlers nicht geladen werden!');
			}	
		})
	}
}
