$(document).ready(function() {
	
	$.simpleWeather({
		location: 'bujumbura, burundi',
		unit: 'c',
		success: function(weather) {
			$("#weather").append('<img style="float:left;" width="125px" src="'+weather.image+'">');
			$("#weather").append('<p>'+weather.temp+'&deg; '+weather.units.temp+'<br /><span>'+weather.currently+'</span></p>');
			$("#weather").append('<span class="weather_small"><a href="'+weather.link+'" target="_blank">Pr&eacute;visions &raquo;</a></span>');
		},
		error: function(error) {
			$("#weather").html('<p>'+error+'</p>');
		}
	});

});
