$(function() {
	$.simpleWeather({
		location: 'melbourne, australia',
		unit: 'c',
		success: function(weather) {
			$("#weather").append('<div id="temp"></div>');
			$("#temp").append('<img class="png_bg" src="/files/images/w-icons/'+weather.image+'.png" width="32" height="32" />');
			$("#temp").append('<h3>&nbsp;<span class="cur">'+weather.temp+'&deg;</span> &nbsp;High '+weather.high+'&deg; &nbsp;Low '+weather.low+'&deg; &nbsp;</h3>');
			$("#temp").append('<p></p>');
			$("#temp p").append(weather.currently+'<br />');
			$("#temp p").append('<a href="'+weather.link+'" target = "_blank">Full details</a>');
		}
	});
});
