<!-- hide javascript
//Last updated on 10-18-09 by Michael Morrissette

TDate = new Date();
ADay = new Array('1', '2', '3', '4', '5', '6', '7');
CDay = TDate.getDay();
CurDay = ADay[CDay];

ADate = new Array('00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31');
CDate = TDate.getDate();
CurDate = ADate[CDate]; //reset date value to 2 digits

AMonth = new Array('01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12');
CMonth = TDate.getMonth();
CurMonth = AMonth[CMonth];

TheDate = TDate.getYear();
TheDate += CurMonth;
ThisMonth = TheDate;
TheDate += CurDate;

CCC_FOOTER =  "<table width='800' cellpadding='0' cellspacing='0' border='0' bgcolor='#000033'><tr><td valign='top'><img src='art/crossroads_footer.jpg' width='800' height='75' border='0' usemap='#Map'><map name='Map'>";
CCC_FOOTER += "<area shape='rect' coords='20,48,68,60' href='index.html' alt='Go to Home Page'>";
CCC_FOOTER += "<area shape='rect' coords='68,48,115,60' href='about.html' alt='More about Crossroads Christian Church'>";
CCC_FOOTER += "<area shape='rect' coords='115,48,188,60' href='location.html' alt='Get directins to Crossroads Christian Church'>";
CCC_FOOTER += "<area shape='rect' coords='188,48,242,60' href='contact.html' alt='Contact our Staff'>";
CCC_FOOTER += "<area shape='rect' coords='608,8,633,30' href='mailto:info@crossroadsofjoliet.org' alt='Send us an E-Mail Message'>";
CCC_FOOTER += "<area shape='rect' coords='654,8,677,30' href='listen.html' alt='Listen to the Latest Messages'>";
CCC_FOOTER += "<area shape='rect' coords='697,8,719,30' href='cafe.html' alt='CAFE'>";
CCC_FOOTER += "<area shape='rect' coords='739,8,752,30' href='questions.pdf' target='new' alt='Community Group Questions'>";

CCC_FOOTER += "</map></td></tr></table>";

// done hiding -->