$(function(){$("select#weatherCity").change(function(){$('#loading').show();var wURL='/get/weather/'+$(this).val();$.getJSON(wURL,null,function(weather){var weatherToday=weather[0]['t_min']+'<sup>0</sup> ... '+weather[0]['t_max']+'<sup>0</sup>C';var weatherTomorrow=weather[1]['t_min']+'<sup>0</sup> ... '+weather[1]['t_max']+'<sup>0</sup>C';$("#weatherToday").html(weatherToday);$("#weatherTomorrow").html(weatherTomorrow);$("#weatherPicToday").attr('src','http://img.all-news.biz/weather2/'+weather[0]['pict']);$("#weatherPicTomorrow").attr('src','http://img.all-news.biz/weather2/'+weather[1]['pict']);$('#loading').hide()});$('#moreWeather a').attr('href','/weather/list/'+$(this).val())});$("select#weatherCityFull").change(function(){var wURL='/weather/'+$("select#weatherCountryFull").val()+'/list/'+$(this).val();window.location.href=wURL});$("select#weatherCountryFull").change(function(){var wURL='/weather/'+$(this).val()+'/list';window.location.href=wURL})})