function getWeather(zone)
{
if (zone == 1)
    return 'Fair 72&deg; F';
if (zone == 2)
    return 'Fair 72&deg; F';
if (zone == 3)
    return 'Partly Cloudy 76&deg; F';
if (zone == 4)
    return 'Partly Cloudy 76&deg; F';
if (zone == 5)
    return 'A Few Clouds 70&deg; F';
if (zone == 6)
    return 'Partly Cloudy 76&deg; F';
if (zone == 7)
    return 'Partly Cloudy 71&deg; F';

    return 'Partly Cloudy 70&deg; F';

}

function getWeatherIcon(zone)
{
if (zone == 1)
    return 'http://weather.gov/weather/images/fcicons/skc.jpg';
if (zone == 2)
    return 'http://weather.gov/weather/images/fcicons/skc.jpg';
if (zone == 3)
    return 'http://weather.gov/weather/images/fcicons/sct.jpg';
if (zone == 5)
    return 'http://weather.gov/weather/images/fcicons/few.jpg';
if (zone == 6)
    return 'http://weather.gov/weather/images/fcicons/sct.jpg';
if (zone == 7)
    return 'http://weather.gov/weather/images/fcicons/sct.jpg';

return 'http://weather.gov/weather/images/fcicons/sct.jpg';
}