$(document).ready(function(){
	$('#weather-loading').show();
	var href = "http://www.sws-energie.de/wDeutsch/inc/weather_navi.inc.php";
	console.log("test");
	$('#weather-include').load(href,function(response, status, xhr){
		$('#weather-loading').hide();
	});
});

