function loadWeather() {
		$.ajax({
			type: "POST",
			url: '../cgi/weather.pl',
			data: '',
			dataType: "json",
			async: true,
			complete: function( json, stat ) { 
				var response = eval('(' + json.responseText + ')');
				$( '#weather_img img' ).attr( 'src', '../images/weather/' + response[0].icon + '.png' );
				$( '#weather_degre' ).html( response[0].tmp + ' C&deg;' );
				$( '#data01' ).html( response[0].tmp + ' C&deg;' );
				$( '#data02' ).html( response[0].wind + ' km/h' );
				$( '#data03' ).html( response[0].hmid + ' %' );
				$( '#data04' ).html( response[0].r + ' mb' );
				$( '#data05' ).html( response[0].vis + ' km' );
				$( '#data06' ).html( 'de ' + response[0].sunr );
				$( '#data07' ).html( 'du ' + response[0].suns );
			}
		});
}


$( document ).ready( function() {
	loadWeather(); 
} );

