$(function(){
    $("select#weatherCity").change(function(){
        $('#loading').show();
        var wURL = 'get/weather/' + $(this).val()
        $.getJSON(wURL,null, function(weather){
            $("#weatherTitle").html(weather[0]['title']);
            $("#weatherPic").html('<img src="http://'+window.location.hostname+'/img/weather/'+weather[0]['weather_pic']+'" />');
            $("#weatherData").html(weather[0]['weather']);
            $("#weatherTemp").html(weather[0]['temperature']);
            $("#weatherPressure").html(weather[0]['pressure']);
            $("#weatherWind").html(weather[0]['wind']);
        })
        $('#loading').hide();
    })
})
