 |
|
|
Atlanta Georgia Weather Forecast
Forecast for
Atlanta, Georgia: Dated: 1024 AM EST SAT MAR 13 2010
Expires: 115 AM EST SUN MAR 14 2010
|
|
| SATURDAY | SUNDAY | MONDAY | TUESDAY | WEDNESDAY | THURSDAY | FRIDAY |
 |  |  |  |  |  |  |
Chance Of Showers | Chance Of Showers | Windy | Partly Sunny | Chance Of Showers | Chance Of Showers | Mostly Sunny |
Hi: 51°F Lo: 39°F | Hi: 51°F Lo: 39°F | Hi: 59°F Lo: 35°F | Hi: 59°F Lo: 40°F | Hi: 59°F Lo: 39°F | Hi: 61°F Lo: 39°F | Hi: 65°F |
| Pop: 40% | Pop: 20% | | | Pop: 20% | Pop: 20% | |
ZoneCast:
Dated: 1024 AM EST SAT MAR 13 2010
Expires: 115 AM EST SUN MAR 14 2010
|
|
Includes the Counties: Cherokee,
Clayton,
Cobb,
Dekalb,
Forsyth,
Gwinnett,
Henry,
North Fulton,
Rockdale,
South Fulton
Includes the cities: Atlanta,
Conyers,
Decatur,
East Point,
Lawrenceville,
Marietta
Saturday...Mostly cloudy with a 40 percent chance of showers. Highs in the lower 50s. West winds 10 to 15 mph.
Sunday...Mostly cloudy with a 20 percent chance of showers in the morning. Highs in the lower 50s. West winds 10 to 15 mph.
Monday...Mostly sunny. Windy. Highs in the upper 50s. Northwest winds 10 to 20 mph.
Tuesday...Partly sunny. Highs in the upper 50s.
Wednesday...Partly sunny with a 20 percent chance of showers. Highs in the upper 50s.
Thursday...Partly sunny with a 20 percent chance of showers. Highs in the lower 60s.
Friday...Mostly sunny. Highs in the mid 60s.
|
Powered by HAMweather
|
';
cal += '';
cal += '' + TR_start;
cal += '| ';
cal += month_of_year[month] + ' ' + year + '' + TD_end + TR_end;
cal += TR_start;
///////////////////////////////////
// DO NOT EDIT BELOW THIS POINT //
///////////////////////////////////
// LOOPS FOR EACH DAY OF WEEK
for(index=0; index < DAYS_OF_WEEK; index++) {
// PRINTS DAY
cal += TD_start + day_of_week[index] + TD_end;
}
cal += TD_end + TR_end;
cal += TR_start;
// FILL IN BLANK GAPS UNTIL TODAY'S DAY
for(index=0; index < dateObj.getDay(); index++) {
cal += TD_start + ' ' + TD_end;
}
// LOOPS FOR EACH DAY IN CALENDAR
for(index=0; index < DAYS_OF_MONTH; index++) {
if( dateObj.getDate() > index ) {
// RETURNS THE NEXT DAY TO PRINT
week_day =dateObj.getDay();
// START NEW ROW FOR FIRST DAY OF WEEK
if(week_day == 0) {
cal += TR_start;
}
if(week_day != DAYS_OF_WEEK) {
// SET VARIABLE INSIDE LOOP FOR INCREMENTING PURPOSES
var day = dateObj.getDate();
// PRINTS DAY
cal += TD_start + "" + day + "" + TD_end;
}
// END ROW FOR LAST DAY OF WEEK
if(week_day == DAYS_OF_WEEK) {
cal += TR_end;
}
}
// INCREMENTS UNTIL END OF THE MONTH
dateObj.setDate(dateObj.getDate()+1);
}// end for loop
cal += ' | |
';
cal += '';
cal += '';
cal += ' | | | |