|
Featured Hotels and InnsThe Liberty HotelDoes staying overnight at a jail sound appealing? How about if it had been converted into one of Boston?s newest luxury hotels? Boston?s Liberty Hotel?s building was once the Charles Street Jail and housed such notorious figures as Sacco and Venzetti, a pair of Italian Immigrants sentenced to death for armed robbery and murder in one of the nation?s most controversial trials, and former Boston Mayor James Michael Curley after he was found guilty for taking a civil service exam for a friend.
The granite building, finally closed as a jail in 1990 because its living conditions had been found unfit, reopened in 2007 as a hotel. The Beacon Hill-area hotel retains its classic architecture, including its expansive, arched windows and its rotunda. You can eat among the jail cell bars at the hotel?s restaurant Clink, or sip fine Champagne at its lobby bar.
Book a room
Lizzie Borden Bed and BreakfastYou?ve heard the children?s rhyme "Lizzie Borden took an axe and gave her mother forty whacks ?" If you book early enough, you can stay at the Fall River home where the sensational murder took place. Whether Lizzie killed her parents on Aug. 4, 1892, or not is uncertain. She was acquitted by a court of law, but convicted by popular opinion. The bed and breakfast rents out two two-bedroom suites and four guest rooms. Tours are offered daily.
Book a room
Concord?s Colonial InnThe Colonial Inn, located in the center of Concord, not only has historical significance, but its Room 24 is said to be haunted. In 1966, a newlywed staying in the room reported waking up to a ?shadowy mass in the shape of a standing figure.? The inn?s historical significance dates back to 1775 when arms and provisions were stored in one of the inn?s original buildings while British troops marched from Boston to Concord to seize the settlers? munitions. The colonists fought back, and America?s Revolutionary War began. The war eventually culminated in the creation of the United States of America. Noted author and philosopher Henry David Thoreau also lived at what is now the inn in the early 1800s.
Book a room
|
';
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 += ' |