// скрывает/открывает день
function weather_click(e)
{
    $('#'+e).toggleClass('hidden');
}

// скрыть/показать весь прогноз
function weather_all()
{
    var ob = $('#weather_detail');
    var text = 'Подробный прогноз';
    var n = 1;
    if (ob.text() == text) {
        ob.text('Скрыть подробный прогноз');
    } else {
        n = 2;
        ob.text(text);
    }
    $('#weather tbody').each(function() {
        if ($(this).attr('id') != '') {
            if (n == 1) {
                $(this).removeClass('hidden');
            } else {
                $(this).addClass('hidden');
            }
        }
    });
}
