function initBanner() {
	$.ajax({
		  url: 'http://sfg-singen.de/ajax/ajax_banner_get.php',
		  success: function(data) {
		    $('#banner_div a').html(data);
		    window.setInterval("swapBanner()", 10000); //Banner
		  }
		});
}

function swapBanner() {
	$('#banner_div a img:visible:last').fadeOut("slow", function() {
		$('#banner_div a').prepend($(this));
		$(this).css({display:"block", opacity:1.0});
	});
}
