// Wird ausgefuehrt, wenn das Dokument FERTIG geladen wurde!
$(document).ready(function(){
	checkNewsSection();
});

/* Check whether the news section has any content. If not, then hide this section. */
function checkNewsSection() {
	var children = $("#news > *");
	var n = children.size();
	if ( n > 0 ) {
		$("#left-news-box-content").fadeIn(2000);
	};
}