$(document).ready(function() {
    $('a').focus(function() {
        $(this).blur();
    });
        
    if ($("#box-weather").length) {
        $.simpleWeather({
            zipcode: '02021',
            unit: 'f',
            success: function(weather) {
                $("#box-weather").append('<div class="weatherpic"><img width="120" src="'+weather.image+'" /></div>');
                $("#box-weather").append('<h2>'+weather.temp+'&deg; '+weather.units.temp+'</h2>');
                $("#box-weather").append("<span>"+weather.currently+"</span>");
            
               	$("#box-weather").append('<a href="'+weather.link+'" target="_blank">View Forecast &raquo;</a>');
            },
            error: function(error) {
                $("#box-weather").html('<p>'+error+'</p>');
            }
        });
    }
});
