The
Allstate Sugar Bowl January
1, 2010
7:30 P.M.
Louisiana Superdome BUY TICKETS
vs.
#5 Florida Gators (12-1)
#4 Cincinnati Bearcats
(12-0)
Last years national champion Florida Gators take on the Undefeated Big East Champion Cincinnati Bearcats in the 76th annual Sugar Bowl game in New Orleans. Making their 8th appearence in the annual game (1966, 1974, 1992, 1994, 1995, 1997 and 2001), Florida looks to unseat Cincinnati from the ranks of the undefeated and give Tim Tebow a win in his final game as a Florida Gator. For the third year in a row, The Allstate Sugar Bowl in New Orleans will feature an undefeated team in the Cincinnati Bearcats. This will be Cincinnati's first appearence in the Sugar Bowl.
In 1890, Pasadena, California held its first Tournament of Roses Parade to showcase the city's mild weather compared to the harsh winters in northern cities. As one of the organizers said: "In New York, people are buried in snow. Here, our flowers are blooming and our oranges are about to bear. Let's hold a festival to tell the world about our paradise." In 1902, the annual festival was enhanced by adding a football game.
Book your Hotel Room in New Orleans for the Game
';
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 += '