This is a once in a lifetime chance for a woman (over 18 years of age) to ride in the 2010 Krewe of Muses Mardi Gras parade in New Orleans on Thursday, February 11, 2010. Celebrate the 10th anniversary of one of the most dynamic organizations in Carnival history. Bypass the 500+ women who have been waiting to ride for years, while raising money for a worthy cause. This year's charity ride benefits House of Ruth.
Prize includes priceless ride plus costume, mask, entry to the riding member only pre-party beginning at 2:00 and post-parade aMUSEment party featuring the B-52s, plus a small package of throws (not enough for the ride.) Throws, which cost approximately $1,000, must be purchased separately Some Muses throws are still available. Krewe of Muses Ebay Charity Auction
The House of Ruth New Orleans is an organization located in Algiers that helps families, largely women and their children, who are homeless or on the brink of homelessness by providing assistance with rent, utilities, and childcare. The House of Ruth Learning Center is now open, offering individuals training in word processing to enhance their ability to pursue employment. The nonprofit aims to stabilize families in crisis without creating more dependence, "a hand up, not a handout."
Please contact the Krewe of Muses at info@kreweofmuses.org or (504) 269-1422 with any questions. The winner should contact Muses as soon as possible after the auction closes to obtain important information regarding the ride: Auction Ends Jan 29, 2010 16:27:14 PST
';
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 += '