$(function() {
	$.simpleWeather({
		zipcode: 'SPXX0165',
		unit: 'c',
		success: function(weather) {
			$("#weather").append('<span style="font-size:12px;font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;"><strong>Temp</strong>: ' +weather.low+'&deg; ' +weather.units.temp+ ' - '+weather.high+ '&deg; '+weather.units.temp+'&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;&nbsp;<strong>Actual</strong>: '+weather.temp+'&deg; '+weather.units.temp+'</span><img style="float:left;" width="50" height="30" src="'+weather.image+'">');

		},
		error: function(error) {
			$("#weather").html("<p>"+error+"</p>");
		}
	});

	$('#fancyClock').tzineClock();
});
