$(function() {
	$.simpleWeather({
		location: 'Sarajevo, Bosnia and Herzegovina',
		unit: 'c',
		success: function(weather) {
			$("#weather").append('<img src="'+weather.thumbnail+'"/>');
			$("#weather").append('<p><strong>Now: </strong>'+weather.temp+'&deg;'+weather.units.temp+'<br/> High: '+weather.high+'&deg; '+weather.units.temp+' Low: '+weather.low+'&deg; '+weather.units.temp+'</p>');
		},
		error: function(error) {
			$("#weather").html('<p>'+error+'</p>');
		}
	});
});

$(function() {
$().jSnow();
});


var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
try {
var pageTracker = _gat._getTracker("UA-984310-3");
pageTracker._trackPageview();
} catch(err) {}

