$('#weather-tabs a').click(function(e) {
  e.preventDefault();
  var day = $(this).attr('href');
  $('.weather-widget:visible').hide();
  $(day + '-weather').show();
  $('#weather-tabs a.active').removeClass('active');
  $(this).addClass('active');
});
