Forecast for
Las Vegas, Nevada: Dated: 655 AM PST FRI MAR 12 2010
Expires: 845 PM PST FRI MAR 12 2010
FRIDAY
SATURDAY
SUNDAY
MONDAY
TUESDAY
WEDNESDAY
THURSDAY
Mostly Sunny
Rain Showers
Mostly Sunny
Clear
Mostly Sunny
Mostly Clear
Partly Cloudy
Hi: 62°F Lo: 45°F
Hi: 55°F Lo: 39°F
Hi: 60°F Lo: 46°F
Hi: 67°F Lo: 46°F
Hi: 76°F Lo: 50°F
Hi: 76°F Lo: 50°F
Hi: 74°F
Pop: 20%
ZoneCast: Dated: 655 AM PST FRI MAR 12 2010
Expires: 845 PM PST FRI MAR 12 2010
Includes the Counties: Las Vegas Valley
Friday...Mostly sunny. Highs around 62 on the west side of the valley to around 69 on the east side. Light wind becoming southeast up to 10 mph in the afternoon.
Saturday...Partly sunny with a 20 percent chance of rain showers. Windy. Highs around 55 on the west side of the valley to around 64 on the east side. Southwest wind 20 to 30 mph. Gusts around 40 mph in the afternoon
Sunday...Mostly sunny. Breezy. Highs around 60 on the west side of the valley to around 68 on the east side. North wind 15 to 25 mph with gusts to around 40 mph.
Monday...Clear. Highs around 67 on the west side of the valley to around 77 on the east side. Lows 43 to 48 on the west side of the valley to 47 to 53 on the east side.
Tuesday...Mostly sunny. Warmer. Highs around 76 on the west side of the valley to around 83 on the east side.
Wednesday...Mostly clear. Highs around 76 on the west side of the valley to around 84 on the east side. Lows around 50 on the west side of the valley to 54 to 57 on the east side.
Thursday...Partly cloudy. Highs around 74 on the west side of the valley to around 82 on the east side.
';
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 += '