Krewe of Cleopatra
"Her beauty is timeless, her age is now. forever!"
Location: Westbank
Date: February 5, 2010
Time: 6:30 p.m.
Year Founded: 1972
Theme: Those Famous Words
Queen 2010: Arleen O. Pizani
Float Designer: Phil Fricano
Krewe Website: www.kreweofcleopatra.org
Though it seems like yesterday... it was 37 years ago that two sisters saw in their dreams a vision of Mardi Gras, with the beauty and grace that could only be captured in an all women's carnival organization. Thus, was this krewe born. A symbol was chosen for the power, dignity and beauty of a women's krewe...
The ageless splendor of Egypt's mighty ruler...
About the Book Never before has the history of the Mardi Gras celebration been looked at this way. Errol Laborde focuses on the first 60 years of the organized celebration in New Orleans, a period that bridges the premiere parade of the Mistick Krewe of Comus and the founding of the Zulu organization. Along the way he discovers fascinating characters; including a poetic journalist who survived a bloody attack, an archduke looking for fun and a would-be king finding religion. Laborde also links an African War with Custer¹s Last Stand and disproves some of the conventional wisdom about Carnival¹s early history. This is the most important contemporary book on early Carnival history. And it fun to read too.
about Errol Laborde Errol Laborde is the Editor-in-Chief of Renaissance Publishing Company. In that capacity he serves as Editor/Associate Publisher of New Orleans Magazine and Editor/ Publisher of Louisiana Life Magazine.He also oversees several other company publications, including St. Charles Avenue and New Orleans Homes & Lifestyles.
Laborde is producer and a regular panelist on Informed Sources, a weekly news discussion program broadcast on public television station WYES-TV, Channel 12.
Laborde's
most recent books are Krewe: The Early Carnival from Comus to Zulu and Marched the Day God. a history of the Rex organization. He also wrote the text for a pictorial book, Mardi Gras- A Celebration and has published two compilations of his Streetcar local color columns, The Buzzard Wore A Tutu and I Never Danced With An Eggplant. BUY THE BOOK
';
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 += '