	// *******************************************
	// THIS ESTABLISHES VARIABLES USED IN THE BELOW CODE
	var d = new Date();
	var today = d.getDate();
	var thisYear = d.getFullYear();
	//alert("d.getMonth = " + d.getMonth() );
	var sLocation = document.location.toString();
	if (sLocation.indexOf('2008') > -1) {
		curYear = '2008';
	} else if (sLocation.indexOf('CRABBY_ROAD') == -1) {
		curYear = '2008';
	} else {
		curYear = '2007';
	}
	// *******************************************

	// *******************************************
	// THIS IS FOR WHEN A DATE IN THE CURRENT MONTH IS ROLLED OVER
	function tdOver(whatTD) {
		//alert("whatTD = " + whatTD.id);
		if (today == whatTD.id){
		    document.getElementById(whatTD.id).className="currentday_over"
		}
		else if (today > whatTD.id){
		    document.getElementById(whatTD.id).className="pastday_over"
		}
		else{
		    document.getElementById(whatTD.id).className="futureday_over";
		}
	}
	// *******************************************

	// *******************************************
	// THIS IS FOR WHEN A DATE IN THE CURRENT MONTH IS ROLLED OUT
	function tdOut(whatTD) {
		//alert("whatTD = " + whatTD.id);
		if (today == whatTD.id){
		    document.getElementById(whatTD.id).className="currentday"
		}
		else if (today > whatTD.id){
		    document.getElementById(whatTD.id).className="pastday"
		}
		else{
		    document.getElementById(whatTD.id).className="futureday";
		}	
	}
	// *******************************************

	// *******************************************
	// THIS FUNCITON IS FOR OUTPUTTING A DATE IN THE CURRENT MONTH
	function outputDate( whatMonth, whatDate ){
		//alert('whatMonth=' + whatMonth + '\nwhatDate=' + whatDate);
		var imgArray = eval("maxineImgs_" + whatMonth);

		// IF THE MONTH PASSED IN IS NOT THE CURRENT MONTH, USE 1
		if( whatMonth == months[d.getMonth()] ){
			document.write("<td id=\"" + whatDate + "\" onmouseover=\"tdOver(this)\" onmouseout=\"tdOut(this)\" onClick=\"changeSrc('crabbyroad','" + imgArray[whatDate] + "')\">");
			document.write("<span style=\"cursor: pointer\">");
			if (today == whatDate){
			    document.getElementById(whatDate).className="currentday"
			}
			else if (today > whatDate){
			    document.getElementById(whatDate).className="pastday"
			}
			else{
			    document.getElementById(whatDate).className="futureday";
			}
			document.write( whatDate );
			document.write("</span></td>");
		}
		else{
			document.write("<td class=\"pastday\" onmouseover=\"this.className='pastday_over';\" onmouseout=\"this.className='pastday';\" onClick=\"changeSrc('crabbyroad','" + imgArray[whatDate] + "')\">");
			document.write("<span style=\"cursor: pointer\">");
			document.write( whatDate );
			document.write("</span></td>");
		}

	}
	// *******************************************

	// *******************************************
	// THIS FUNCTION OUTPUTS THE TOP NAVIGATION AND THE MONTH NAME
	function outputTopNav(whatMonth){
		currMonthIdx = returnMonthIndex(whatMonth);
		prevMonthIdx = currMonthIdx - 1;
		nextMonthIdx = currMonthIdx + 1;
		
		prevMonth = months[prevMonthIdx];
		nextMonth = months[nextMonthIdx];
		
		document.write("<tr>");
			document.write("<td class=\"monthname\" width=\"29\" height=\"25\">");
			//alert('curYear: '+ curYear +'\nthisYear: '+ thisYear +'\nprevMonthIdx: '+ prevMonthIdx +'\nnextMonthIdx: '+ nextMonthIdx +'\nprevMonth: '+ prevMonth +'\nprevMonth: '+ nextMonth)
			if( prevMonthIdx >= 0 ){
				if (curYear == thisYear) {
					document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_" + prevMonth + "_2008\" onmouseover=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow_over.gif'\" onmouseout=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif\" name=\"previousmonth\" alt=\"<\" border=\"0\"></a>");
				} else {
					document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_" + prevMonth + "\" onmouseover=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow_over.gif'\" onmouseout=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif\" name=\"previousmonth\" alt=\"<\" border=\"0\"></a>");
				}
			}
			if ( (prevMonthIdx == -1) && (curYear == thisYear) ) {
				document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_DECEMBER\" onmouseover=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow_over.gif'\" onmouseout=\"previousmonth.src='/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/left_arrow.gif\" name=\"previousmonth\" alt=\"<\" border=\"0\"></a>");
			}
			
			document.write("</td>");
			document.write("<td class=\"monthname\" colspan=\"5\" width=\"145\" height=\"25\">");
			//alert('curYear:' + curYear + '\nthisYear:' + thisYear);
			if (curYear != thisYear) {
				document.write( whatMonth + ' ' + curYear );
			} else {
				document.write( whatMonth + ' ' + d.getFullYear() );
			}
			document.write("</td>");

			document.write("<td class=\"monthname\" width=\"29\" height=\"25\">");
			if( ( (nextMonthIdx <= d.getMonth()) || (curYear < thisYear) ) && (nextMonthIdx != '12') ) {
				if (curYear == thisYear) {
					document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_" + nextMonth + "_2008\" onmouseover=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow_over.gif'\" onmouseout=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif\" name=\"nextmonth\" alt=\">\" border=\"0\"></a>");
				} else {
					document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_" + nextMonth + "\" onmouseover=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow_over.gif'\" onmouseout=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif\" name=\"nextmonth\" alt=\">\" border=\"0\"></a>");
				}
			}
			if ( (nextMonthIdx == '12') && (curYear < thisYear) ) {
				document.write("<a href=\"/webapp/wcs/stores/servlet/article|10001|10051|/HallmarkSite/Maxine/CrabbyRoad/CRABBY_ROAD_JANUARY_2008\" onmouseover=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow_over.gif'\" onmouseout=\"nextmonth.src='/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif'\"><img src=\"/wcsstore/HallmarkStore/images/Maxine/right_arrow.gif\" name=\"nextmonth\" alt=\">\" border=\"0\"></a>");
			}
			document.write("</td>")
		document.write("</tr>");

		document.write("<tr align=\"center\">");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">S</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">M</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">T</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">W</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">T</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">F</td>");
			document.write("<td align=\"center\" class=\"daynames\" width=\"29\" height=\"22\">S</td>");
		document.write("</tr>");
	}
	// *******************************************

	// *******************************************
	// THIS FUNCTION OUTPUTS THE APPROPRIATE IMAGE WHEN THE PAGE FIRST LOADS
	function outputImage(whatMonth){
		var tmpWhatMonth = whatMonth;
		var tmpToday = today;
		// IF THE MONTH PASSED IN IS NOT THE CURRENT MONTH, USE 1
		if( whatMonth != months[d.getMonth()] ){
			tmpToday = "1";
		}
		var imgArray = eval("maxineImgs_" + tmpWhatMonth);
		document.write("<img id=\"crabbyroad\" src=\"" + imgArray[tmpToday] + "\">");
	}
	// *******************************************

	// *******************************************
	// THIS FUNCTION CHANGES THE SOURCE OF THE MAXIME IMAGE
	function changeSrc(name,newSource){
		//alert("name = " + name);
		//alert("newSource = " + newSource);
		if (document.images) document.images[name].src = newSource;
	}
	// *******************************************

	// *******************************************
	// ARRAY OF MONTHS AND THEIR NAMES
	var months = new Array();
	months[0] = "JANUARY";
	months[1] = "FEBRUARY";
	months[2] = "MARCH";
	months[3] = "APRIL";
	months[4] = "MAY";
	months[5] = "JUNE";
	months[6] = "JULY";
	months[7] = "AUGUST";
	months[8] = "SEPTEMBER";
	months[9] = "OCTOBER";
	months[10] = "NOVEMBER";
	months[11] = "DECEMBER";
	// *******************************************
	

	// *******************************************
	function returnMonthIndex(whatMonth){
		var tmpi = 0;
		
		for(i=0; i<months.length; i++){
			if( months[i] == whatMonth ){
				tmpi = i;
				break;
			} 
		}
		return tmpi;
	}
	// *******************************************


if (curYear == '2008') {
		// *******************************************
		// MAY 2008 IMAGE ARRAY
		var maxineImgs_MAY = new Array();
		maxineImgs_MAY[0] = "";
		maxineImgs_MAY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max05-01-08.jpg";
		maxineImgs_MAY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max05-02-08.jpg";
		maxineImgs_MAY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max05-03-08.jpg";
		maxineImgs_MAY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max05-04-08.jpg";
		maxineImgs_MAY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max05-05-08.jpg";
		maxineImgs_MAY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max05-06-08.jpg";
		maxineImgs_MAY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max05-07-08.jpg";
		maxineImgs_MAY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max05-08-08.jpg";
		maxineImgs_MAY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max05-09-08.jpg";
		maxineImgs_MAY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max05-10-08.jpg";
		maxineImgs_MAY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max05-11-08.jpg";
		maxineImgs_MAY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max05-12-08.jpg";
		maxineImgs_MAY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max05-13-08.jpg";
		maxineImgs_MAY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max05-14-08.jpg";
		maxineImgs_MAY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max05-15-08.jpg";
		maxineImgs_MAY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max05-16-08.jpg";
		maxineImgs_MAY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max05-17-08.jpg";
		maxineImgs_MAY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max05-18-08.jpg";
		maxineImgs_MAY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max05-19-08.jpg";
		maxineImgs_MAY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max05-20-08.jpg";
		maxineImgs_MAY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max05-21-08.jpg";
		maxineImgs_MAY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max05-22-08.jpg";
		maxineImgs_MAY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max05-23-08.jpg";
		maxineImgs_MAY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max05-24-08.jpg";
		maxineImgs_MAY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max05-25-08.jpg";
		maxineImgs_MAY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max05-26-08.jpg";
		maxineImgs_MAY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max05-27-08.jpg";
		maxineImgs_MAY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max05-28-08.jpg";
		maxineImgs_MAY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max05-29-08.jpg";
		maxineImgs_MAY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max05-30-08.jpg";
		maxineImgs_MAY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max05-31-08.jpg";
		// *******************************************
		
		// *******************************************
		// APRIL 2008 IMAGE ARRAY
		var maxineImgs_APRIL = new Array();
		maxineImgs_APRIL[0] = "";
		maxineImgs_APRIL[1] = "/wcsstore/HallmarkStore/images/Maxine/Max04-01-08.jpg";
		maxineImgs_APRIL[2] = "/wcsstore/HallmarkStore/images/Maxine/Max04-02-08.jpg";
		maxineImgs_APRIL[3] = "/wcsstore/HallmarkStore/images/Maxine/Max04-03-08.jpg";
		maxineImgs_APRIL[4] = "/wcsstore/HallmarkStore/images/Maxine/Max04-04-08.jpg";
		maxineImgs_APRIL[5] = "/wcsstore/HallmarkStore/images/Maxine/Max04-05-08.jpg";
		maxineImgs_APRIL[6] = "/wcsstore/HallmarkStore/images/Maxine/Max04-06-08.jpg";
		maxineImgs_APRIL[7] = "/wcsstore/HallmarkStore/images/Maxine/Max04-07-08.jpg";
		maxineImgs_APRIL[8] = "/wcsstore/HallmarkStore/images/Maxine/Max04-08-08.jpg";
		maxineImgs_APRIL[9] = "/wcsstore/HallmarkStore/images/Maxine/Max04-09-08.jpg";
		maxineImgs_APRIL[10] = "/wcsstore/HallmarkStore/images/Maxine/Max04-10-08.jpg";
		maxineImgs_APRIL[11] = "/wcsstore/HallmarkStore/images/Maxine/Max04-11-08.jpg";
		maxineImgs_APRIL[12] = "/wcsstore/HallmarkStore/images/Maxine/Max04-12-08.jpg";
		maxineImgs_APRIL[13] = "/wcsstore/HallmarkStore/images/Maxine/Max04-13-08.jpg";
		maxineImgs_APRIL[14] = "/wcsstore/HallmarkStore/images/Maxine/Max04-14-08.jpg";
		maxineImgs_APRIL[15] = "/wcsstore/HallmarkStore/images/Maxine/Max04-15-08.jpg";
		maxineImgs_APRIL[16] = "/wcsstore/HallmarkStore/images/Maxine/Max04-16-08.jpg";
		maxineImgs_APRIL[17] = "/wcsstore/HallmarkStore/images/Maxine/Max04-17-08.jpg";
		maxineImgs_APRIL[18] = "/wcsstore/HallmarkStore/images/Maxine/Max04-18-08.jpg";
		maxineImgs_APRIL[19] = "/wcsstore/HallmarkStore/images/Maxine/Max04-19-08.jpg";
		maxineImgs_APRIL[20] = "/wcsstore/HallmarkStore/images/Maxine/Max04-20-08.jpg";
		maxineImgs_APRIL[21] = "/wcsstore/HallmarkStore/images/Maxine/Max04-21-08.jpg";
		maxineImgs_APRIL[22] = "/wcsstore/HallmarkStore/images/Maxine/Max04-22-08.jpg";
		maxineImgs_APRIL[23] = "/wcsstore/HallmarkStore/images/Maxine/Max04-23-08.jpg";
		maxineImgs_APRIL[24] = "/wcsstore/HallmarkStore/images/Maxine/Max04-24-08.jpg";
		maxineImgs_APRIL[25] = "/wcsstore/HallmarkStore/images/Maxine/Max04-25-08.jpg";
		maxineImgs_APRIL[26] = "/wcsstore/HallmarkStore/images/Maxine/Max04-26-08.jpg";
		maxineImgs_APRIL[27] = "/wcsstore/HallmarkStore/images/Maxine/Max04-27-08.jpg";
		maxineImgs_APRIL[28] = "/wcsstore/HallmarkStore/images/Maxine/Max04-28-08.jpg";
		maxineImgs_APRIL[29] = "/wcsstore/HallmarkStore/images/Maxine/Max04-29-08.jpg";
		maxineImgs_APRIL[30] = "/wcsstore/HallmarkStore/images/Maxine/Max04-30-08.jpg";
		// *******************************************
	
		// *******************************************
		// MARCH 2008 IMAGE ARRAY
		var maxineImgs_MARCH = new Array();
		maxineImgs_MARCH[0] = "";
		maxineImgs_MARCH[1] = "/wcsstore/HallmarkStore/images/Maxine/Max03-01-08.jpg";
		maxineImgs_MARCH[2] = "/wcsstore/HallmarkStore/images/Maxine/Max03-02-08.jpg";
		maxineImgs_MARCH[3] = "/wcsstore/HallmarkStore/images/Maxine/Max03-03-08.jpg";
		maxineImgs_MARCH[4] = "/wcsstore/HallmarkStore/images/Maxine/Max03-04-08.jpg";
		maxineImgs_MARCH[5] = "/wcsstore/HallmarkStore/images/Maxine/Max03-05-08.jpg";
		maxineImgs_MARCH[6] = "/wcsstore/HallmarkStore/images/Maxine/Max03-06-08.jpg";
		maxineImgs_MARCH[7] = "/wcsstore/HallmarkStore/images/Maxine/Max03-07-08.jpg";
		maxineImgs_MARCH[8] = "/wcsstore/HallmarkStore/images/Maxine/Max03-08-08.jpg";
		maxineImgs_MARCH[9] = "/wcsstore/HallmarkStore/images/Maxine/Max03-09-08.jpg";
		maxineImgs_MARCH[10] = "/wcsstore/HallmarkStore/images/Maxine/Max03-10-08.jpg";
		maxineImgs_MARCH[11] = "/wcsstore/HallmarkStore/images/Maxine/Max03-11-08.jpg";
		maxineImgs_MARCH[12] = "/wcsstore/HallmarkStore/images/Maxine/Max03-12-08.jpg";
		maxineImgs_MARCH[13] = "/wcsstore/HallmarkStore/images/Maxine/Max03-13-08.jpg";
		maxineImgs_MARCH[14] = "/wcsstore/HallmarkStore/images/Maxine/Max03-14-08.jpg";
		maxineImgs_MARCH[15] = "/wcsstore/HallmarkStore/images/Maxine/Max03-15-08.jpg";
		maxineImgs_MARCH[16] = "/wcsstore/HallmarkStore/images/Maxine/Max03-16-08.jpg";
		maxineImgs_MARCH[17] = "/wcsstore/HallmarkStore/images/Maxine/Max03-17-08.jpg";
		maxineImgs_MARCH[18] = "/wcsstore/HallmarkStore/images/Maxine/Max03-18-08.jpg";
		maxineImgs_MARCH[19] = "/wcsstore/HallmarkStore/images/Maxine/Max03-19-08.jpg";
		maxineImgs_MARCH[20] = "/wcsstore/HallmarkStore/images/Maxine/Max03-20-08.jpg";
		maxineImgs_MARCH[21] = "/wcsstore/HallmarkStore/images/Maxine/Max03-21-08.jpg";
		maxineImgs_MARCH[22] = "/wcsstore/HallmarkStore/images/Maxine/Max03-22-08.jpg";
		maxineImgs_MARCH[23] = "/wcsstore/HallmarkStore/images/Maxine/Max03-23-08.jpg";
		maxineImgs_MARCH[24] = "/wcsstore/HallmarkStore/images/Maxine/Max03-24-08.jpg";
		maxineImgs_MARCH[25] = "/wcsstore/HallmarkStore/images/Maxine/Max03-25-08.jpg";
		maxineImgs_MARCH[26] = "/wcsstore/HallmarkStore/images/Maxine/Max03-26-08.jpg";
		maxineImgs_MARCH[27] = "/wcsstore/HallmarkStore/images/Maxine/Max03-27-08.jpg";
		maxineImgs_MARCH[28] = "/wcsstore/HallmarkStore/images/Maxine/Max03-28-08.jpg";
		maxineImgs_MARCH[29] = "/wcsstore/HallmarkStore/images/Maxine/Max03-29-08.jpg";
		maxineImgs_MARCH[30] = "/wcsstore/HallmarkStore/images/Maxine/Max03-30-08.jpg";
		maxineImgs_MARCH[31] = "/wcsstore/HallmarkStore/images/Maxine/Max03-31-08.jpg";
		// *******************************************	
		
		// *******************************************
		// FEBRUARY 2008 IMAGE ARRAY
		var maxineImgs_FEBRUARY = new Array();
		maxineImgs_FEBRUARY[0] = "";
		maxineImgs_FEBRUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max02-01-08.jpg";
		maxineImgs_FEBRUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max02-02-08.jpg";
		maxineImgs_FEBRUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max02-03-08.jpg";
		maxineImgs_FEBRUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max02-04-08.jpg";
		maxineImgs_FEBRUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max02-05-08.jpg";
		maxineImgs_FEBRUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max02-06-08.jpg";
		maxineImgs_FEBRUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max02-07-08.jpg";
		maxineImgs_FEBRUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max02-08-08.jpg";
		maxineImgs_FEBRUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max02-09-08.jpg";
		maxineImgs_FEBRUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max02-10-08.jpg";
		maxineImgs_FEBRUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max02-11-08.jpg";
		maxineImgs_FEBRUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max02-12-08.jpg";
		maxineImgs_FEBRUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max02-13-08.jpg";
		maxineImgs_FEBRUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max02-14-08.jpg";
		maxineImgs_FEBRUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max02-15-08.jpg";
		maxineImgs_FEBRUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max02-16-08.jpg";
		maxineImgs_FEBRUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max02-17-08.jpg";
		maxineImgs_FEBRUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max02-18-08.jpg";
		maxineImgs_FEBRUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max02-19-08.jpg";
		maxineImgs_FEBRUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max02-20-08.jpg";
		maxineImgs_FEBRUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max02-21-08.jpg";
		maxineImgs_FEBRUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max02-22-08.jpg";
		maxineImgs_FEBRUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max02-23-08.jpg";
		maxineImgs_FEBRUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max02-24-08.jpg";
		maxineImgs_FEBRUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max02-25-08.jpg";
		maxineImgs_FEBRUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max02-26-08.jpg";
		maxineImgs_FEBRUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max02-27-08.jpg";
		maxineImgs_FEBRUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max02-28-08.jpg";
		maxineImgs_FEBRUARY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max02-29-08.jpg";
		// *******************************************	
		
        // *******************************************
		// JANUARY 2008 IMAGE ARRAY
		var maxineImgs_JANUARY = new Array();
		maxineImgs_JANUARY[0] = "";
		maxineImgs_JANUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max01-01-08.jpg";
		maxineImgs_JANUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max01-02-08.jpg";
		maxineImgs_JANUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max01-03-08.jpg";
		maxineImgs_JANUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max01-04-08.jpg";
		maxineImgs_JANUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max01-05-08.jpg";
		maxineImgs_JANUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max01-06-08.jpg";
		maxineImgs_JANUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max01-07-08.jpg";
		maxineImgs_JANUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max01-08-08.jpg";
		maxineImgs_JANUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max01-09-08.jpg";
		maxineImgs_JANUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max01-10-08.jpg";
		maxineImgs_JANUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max01-11-08.jpg";
		maxineImgs_JANUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max01-12-08.jpg";
		maxineImgs_JANUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max01-13-08.jpg";
		maxineImgs_JANUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max01-14-08.jpg";
		maxineImgs_JANUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max01-15-08.jpg";
		maxineImgs_JANUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max01-16-08.jpg";
		maxineImgs_JANUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max01-17-08.jpg";
		maxineImgs_JANUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max01-18-08.jpg";
		maxineImgs_JANUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max01-19-08.jpg";
		maxineImgs_JANUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max01-20-08.jpg";
		maxineImgs_JANUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max01-21-08.jpg";
		maxineImgs_JANUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max01-22-08.jpg";
		maxineImgs_JANUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max01-23-08.jpg";
		maxineImgs_JANUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max01-24-08.jpg";
		maxineImgs_JANUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max01-25-08.jpg";
		maxineImgs_JANUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max01-26-08.jpg";
		maxineImgs_JANUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max01-27-08.jpg";
		maxineImgs_JANUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max01-28-08.jpg";
		maxineImgs_JANUARY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max01-29-08.jpg";
		maxineImgs_JANUARY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max01-30-08.jpg";
		maxineImgs_JANUARY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max01-31-08.jpg";
		// *******************************************	
	} else if (curYear == '2007') {
		// *******************************************
		// DECEMBER 2007 IMAGE ARRAY
		var maxineImgs_DECEMBER = new Array();
		maxineImgs_DECEMBER[0] = "";
		maxineImgs_DECEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max12-01-07.jpg";
		maxineImgs_DECEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max12-02-07.jpg";
		maxineImgs_DECEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max12-03-07.jpg";
		maxineImgs_DECEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max12-04-07.jpg";
		maxineImgs_DECEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max12-05-07.jpg";
		maxineImgs_DECEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max12-06-07.jpg";
		maxineImgs_DECEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max12-07-07.jpg";
		maxineImgs_DECEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max12-08-07.jpg";
		maxineImgs_DECEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max12-09-07.jpg";
		maxineImgs_DECEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max12-10-07.jpg";
		maxineImgs_DECEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max12-11-07.jpg";
		maxineImgs_DECEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max12-12-07.jpg";
		maxineImgs_DECEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max12-13-07.jpg";
		maxineImgs_DECEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max12-14-07.jpg";
		maxineImgs_DECEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max12-15-07.jpg";
		maxineImgs_DECEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max12-16-07.jpg";
		maxineImgs_DECEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max12-17-07.jpg";
		maxineImgs_DECEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max12-18-07.jpg";
		maxineImgs_DECEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max12-19-07.jpg";
		maxineImgs_DECEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max12-20-07.jpg";
		maxineImgs_DECEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max12-21-07.jpg";
		maxineImgs_DECEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max12-22-07.jpg";
		maxineImgs_DECEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max12-23-07.jpg";
		maxineImgs_DECEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max12-24-07.jpg";
		maxineImgs_DECEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max12-25-07.jpg";
		maxineImgs_DECEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max12-26-07.jpg";
		maxineImgs_DECEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max12-27-07.jpg";
		maxineImgs_DECEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max12-28-07.jpg";
		maxineImgs_DECEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max12-29-07.jpg";
		maxineImgs_DECEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max12-30-07.jpg";
		maxineImgs_DECEMBER[31] = "/wcsstore/HallmarkStore/images/Maxine/Max12-31-07.jpg";
		// *******************************************			
		
		// *******************************************
		// NOVEMBER 2007 IMAGE ARRAY
		var maxineImgs_NOVEMBER = new Array();
		maxineImgs_NOVEMBER[0] = "";
		maxineImgs_NOVEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max11-01-07.jpg";
		maxineImgs_NOVEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max11-02-07.jpg";
		maxineImgs_NOVEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max11-03-07.jpg";
		maxineImgs_NOVEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max11-04-07.jpg";
		maxineImgs_NOVEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max11-05-07.jpg";
		maxineImgs_NOVEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max11-06-07.jpg";
		maxineImgs_NOVEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max11-07-07.jpg";
		maxineImgs_NOVEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max11-08-07.jpg";
		maxineImgs_NOVEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max11-09-07.jpg";
		maxineImgs_NOVEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max11-10-07.jpg";
		maxineImgs_NOVEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max11-11-07.jpg";
		maxineImgs_NOVEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max11-12-07.jpg";
		maxineImgs_NOVEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max11-13-07.jpg";
		maxineImgs_NOVEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max11-14-07.jpg";
		maxineImgs_NOVEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max11-15-07.jpg";
		maxineImgs_NOVEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max11-16-07.jpg";
		maxineImgs_NOVEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max11-17-07.jpg";
		maxineImgs_NOVEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max11-18-07.jpg";
		maxineImgs_NOVEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max11-19-07.jpg";
		maxineImgs_NOVEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max11-20-07.jpg";
		maxineImgs_NOVEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max11-21-07.jpg";
		maxineImgs_NOVEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max11-22-07.jpg";
		maxineImgs_NOVEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max11-23-07.jpg";
		maxineImgs_NOVEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max11-24-07.jpg";
		maxineImgs_NOVEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max11-25-07.jpg";
		maxineImgs_NOVEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max11-26-07.jpg";
		maxineImgs_NOVEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max11-27-07.jpg";
		maxineImgs_NOVEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max11-28-07.jpg";
		maxineImgs_NOVEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max11-29-07.jpg";
		maxineImgs_NOVEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max11-30-07.jpg";
		// *******************************************			
		
		// *******************************************
		// OCTOBER 2007 IMAGE ARRAY
		var maxineImgs_OCTOBER = new Array();
		maxineImgs_OCTOBER[0] = "";
		maxineImgs_OCTOBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max10-01-07.jpg";
		maxineImgs_OCTOBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max10-02-07.jpg";
		maxineImgs_OCTOBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max10-03-07.jpg";
		maxineImgs_OCTOBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max10-04-07.jpg";
		maxineImgs_OCTOBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max10-05-07.jpg";
		maxineImgs_OCTOBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max10-06-07.jpg";
		maxineImgs_OCTOBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max10-07-07.jpg";
		maxineImgs_OCTOBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max10-08-07.jpg";
		maxineImgs_OCTOBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max10-09-07.jpg";
		maxineImgs_OCTOBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max10-10-07.jpg";
		maxineImgs_OCTOBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max10-11-07.jpg";
		maxineImgs_OCTOBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max10-12-07.jpg";
		maxineImgs_OCTOBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max10-13-07.jpg";
		maxineImgs_OCTOBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max10-14-07.jpg";
		maxineImgs_OCTOBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max10-15-07.jpg";
		maxineImgs_OCTOBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max10-16-07.jpg";
		maxineImgs_OCTOBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max10-17-07.jpg";
		maxineImgs_OCTOBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max10-18-07.jpg";
		maxineImgs_OCTOBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max10-19-07.jpg";
		maxineImgs_OCTOBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max10-20-07.jpg";
		maxineImgs_OCTOBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max10-21-07.jpg";
		maxineImgs_OCTOBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max10-22-07.jpg";
		maxineImgs_OCTOBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max10-23-07.jpg";
		maxineImgs_OCTOBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max10-24-07.jpg";
		maxineImgs_OCTOBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max10-25-07.jpg";
		maxineImgs_OCTOBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max10-26-07.jpg";
		maxineImgs_OCTOBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max10-27-07.jpg";
		maxineImgs_OCTOBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max10-28-07.jpg";
		maxineImgs_OCTOBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max10-29-07.jpg";
		maxineImgs_OCTOBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max10-30-07.jpg";
		maxineImgs_OCTOBER[31] = "/wcsstore/HallmarkStore/images/Maxine/Max10-31-07.jpg";
		// *******************************************			
		
		// *******************************************
		// SEPTEMBER 2007 IMAGE ARRAY
		var maxineImgs_SEPTEMBER = new Array();
		maxineImgs_SEPTEMBER[0] = "";
		maxineImgs_SEPTEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max09-01-07.jpg";
		maxineImgs_SEPTEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max09-02-07.jpg";
		maxineImgs_SEPTEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max09-03-07.jpg";
		maxineImgs_SEPTEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max09-04-07.jpg";
		maxineImgs_SEPTEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max09-05-07.jpg";
		maxineImgs_SEPTEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max09-06-07.jpg";
		maxineImgs_SEPTEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max09-07-07.jpg";
		maxineImgs_SEPTEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max09-08-07.jpg";
		maxineImgs_SEPTEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max09-09-07.jpg";
		maxineImgs_SEPTEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max09-10-07.jpg";
		maxineImgs_SEPTEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max09-11-07.jpg";
		maxineImgs_SEPTEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max09-12-07.jpg";
		maxineImgs_SEPTEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max09-13-07.jpg";
		maxineImgs_SEPTEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max09-14-07.jpg";
		maxineImgs_SEPTEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max09-15-07.jpg";
		maxineImgs_SEPTEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max09-16-07.jpg";
		maxineImgs_SEPTEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max09-17-07.jpg";
		maxineImgs_SEPTEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max09-18-07.jpg";
		maxineImgs_SEPTEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max09-19-07.jpg";
		maxineImgs_SEPTEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max09-20-07.jpg";
		maxineImgs_SEPTEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max09-21-07.jpg";
		maxineImgs_SEPTEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max09-22-07.jpg";
		maxineImgs_SEPTEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max09-23-07.jpg";
		maxineImgs_SEPTEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max09-24-07.jpg";
		maxineImgs_SEPTEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max09-25-07.jpg";
		maxineImgs_SEPTEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max09-26-07.jpg";
		maxineImgs_SEPTEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max09-27-07.jpg";
		maxineImgs_SEPTEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max09-28-07.jpg";
		maxineImgs_SEPTEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max09-29-07.jpg";
		maxineImgs_SEPTEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max09-30-07.jpg";
		// *******************************************
		
		// *******************************************
		// AUGUST 2007 IMAGE ARRAY
		var maxineImgs_AUGUST = new Array();
		maxineImgs_AUGUST[0] = "";
		maxineImgs_AUGUST[1] = "/wcsstore/HallmarkStore/images/Maxine/Max08-01-07.jpg";
		maxineImgs_AUGUST[2] = "/wcsstore/HallmarkStore/images/Maxine/Max08-02-07.jpg";
		maxineImgs_AUGUST[3] = "/wcsstore/HallmarkStore/images/Maxine/Max08-03-07.jpg";
		maxineImgs_AUGUST[4] = "/wcsstore/HallmarkStore/images/Maxine/Max08-04-07.jpg";
		maxineImgs_AUGUST[5] = "/wcsstore/HallmarkStore/images/Maxine/Max08-05-07.jpg";
		maxineImgs_AUGUST[6] = "/wcsstore/HallmarkStore/images/Maxine/Max08-06-07.jpg";
		maxineImgs_AUGUST[7] = "/wcsstore/HallmarkStore/images/Maxine/Max08-07-07.jpg";
		maxineImgs_AUGUST[8] = "/wcsstore/HallmarkStore/images/Maxine/Max08-08-07.jpg";
		maxineImgs_AUGUST[9] = "/wcsstore/HallmarkStore/images/Maxine/Max08-09-07.jpg";
		maxineImgs_AUGUST[10] = "/wcsstore/HallmarkStore/images/Maxine/Max08-10-07.jpg";
		maxineImgs_AUGUST[11] = "/wcsstore/HallmarkStore/images/Maxine/Max08-11-07.jpg";
		maxineImgs_AUGUST[12] = "/wcsstore/HallmarkStore/images/Maxine/Max08-12-07.jpg";
		maxineImgs_AUGUST[13] = "/wcsstore/HallmarkStore/images/Maxine/Max08-13-07.jpg";
		maxineImgs_AUGUST[14] = "/wcsstore/HallmarkStore/images/Maxine/Max08-14-07.jpg";
		maxineImgs_AUGUST[15] = "/wcsstore/HallmarkStore/images/Maxine/Max08-15-07.jpg";
		maxineImgs_AUGUST[16] = "/wcsstore/HallmarkStore/images/Maxine/Max08-16-07.jpg";
		maxineImgs_AUGUST[17] = "/wcsstore/HallmarkStore/images/Maxine/Max08-17-07.jpg";
		maxineImgs_AUGUST[18] = "/wcsstore/HallmarkStore/images/Maxine/Max08-18-07.jpg";
		maxineImgs_AUGUST[19] = "/wcsstore/HallmarkStore/images/Maxine/Max08-19-07.jpg";
		maxineImgs_AUGUST[20] = "/wcsstore/HallmarkStore/images/Maxine/Max08-20-07.jpg";
		maxineImgs_AUGUST[21] = "/wcsstore/HallmarkStore/images/Maxine/Max08-21-07.jpg";
		maxineImgs_AUGUST[22] = "/wcsstore/HallmarkStore/images/Maxine/Max08-22-07.jpg";
		maxineImgs_AUGUST[23] = "/wcsstore/HallmarkStore/images/Maxine/Max08-23-07.jpg";
		maxineImgs_AUGUST[24] = "/wcsstore/HallmarkStore/images/Maxine/Max08-24-07.jpg";
		maxineImgs_AUGUST[25] = "/wcsstore/HallmarkStore/images/Maxine/Max08-25-07.jpg";
		maxineImgs_AUGUST[26] = "/wcsstore/HallmarkStore/images/Maxine/Max08-26-07.jpg";
		maxineImgs_AUGUST[27] = "/wcsstore/HallmarkStore/images/Maxine/Max08-27-07.jpg";
		maxineImgs_AUGUST[28] = "/wcsstore/HallmarkStore/images/Maxine/Max08-28-07.jpg";
		maxineImgs_AUGUST[29] = "/wcsstore/HallmarkStore/images/Maxine/Max08-29-07.jpg";
		maxineImgs_AUGUST[30] = "/wcsstore/HallmarkStore/images/Maxine/Max08-30-07.jpg";
		maxineImgs_AUGUST[31] = "/wcsstore/HallmarkStore/images/Maxine/Max08-31-07.jpg";
		// *******************************************	
		
		// *******************************************
		// JULY 2007 IMAGE ARRAY
		var maxineImgs_JULY = new Array();
		maxineImgs_JULY[0] = "";
		maxineImgs_JULY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max07-01-07.jpg";
		maxineImgs_JULY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max07-02-07.jpg";
		maxineImgs_JULY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max07-03-07.jpg";
		maxineImgs_JULY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max07-04-07.gif";
		maxineImgs_JULY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max07-05-07.jpg";
		maxineImgs_JULY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max07-06-07.jpg";
		maxineImgs_JULY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max07-07-07.jpg";
		maxineImgs_JULY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max07-08-07.jpg";
		maxineImgs_JULY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max07-09-07.jpg";
		maxineImgs_JULY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max07-10-07.jpg";
		maxineImgs_JULY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max07-11-07.jpg";
		maxineImgs_JULY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max07-12-07.jpg";
		maxineImgs_JULY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max07-13-07.jpg";
		maxineImgs_JULY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max07-14-07.jpg";
		maxineImgs_JULY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max07-15-07.jpg";
		maxineImgs_JULY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max07-16-07.jpg";
		maxineImgs_JULY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max07-17-07.jpg";
		maxineImgs_JULY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max07-18-07.jpg";
		maxineImgs_JULY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max07-19-07.jpg";
		maxineImgs_JULY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max07-20-07.jpg";
		maxineImgs_JULY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max07-21-07.jpg";
		maxineImgs_JULY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max07-22-07.jpg";
		maxineImgs_JULY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max07-23-07.jpg";
		maxineImgs_JULY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max07-24-07.jpg";
		maxineImgs_JULY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max07-25-07.jpg";
		maxineImgs_JULY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max07-26-07.jpg";
		maxineImgs_JULY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max07-27-07.jpg";
		maxineImgs_JULY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max07-28-07.jpg";
		maxineImgs_JULY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max07-29-07.jpg";
		maxineImgs_JULY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max07-30-07.jpg";
		maxineImgs_JULY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max07-31-07.jpg";
		// *******************************************	
		
		// *******************************************
		// JUNE 2007 IMAGE ARRAY
		var maxineImgs_JUNE = new Array();
		maxineImgs_JUNE[0] = "";
		maxineImgs_JUNE[1] = "/wcsstore/HallmarkStore/images/Maxine/Max06-01-07.jpg";
		maxineImgs_JUNE[2] = "/wcsstore/HallmarkStore/images/Maxine/Max06-02-07.jpg";
		maxineImgs_JUNE[3] = "/wcsstore/HallmarkStore/images/Maxine/Max06-03-07.jpg";
		maxineImgs_JUNE[4] = "/wcsstore/HallmarkStore/images/Maxine/Max06-04-07.jpg";
		maxineImgs_JUNE[5] = "/wcsstore/HallmarkStore/images/Maxine/Max06-05-07.jpg";
		maxineImgs_JUNE[6] = "/wcsstore/HallmarkStore/images/Maxine/Max06-06-07.jpg";
		maxineImgs_JUNE[7] = "/wcsstore/HallmarkStore/images/Maxine/Max06-07-07.jpg";
		maxineImgs_JUNE[8] = "/wcsstore/HallmarkStore/images/Maxine/Max06-08-07.jpg";
		maxineImgs_JUNE[9] = "/wcsstore/HallmarkStore/images/Maxine/Max06-09-07.jpg";
		maxineImgs_JUNE[10] = "/wcsstore/HallmarkStore/images/Maxine/Max06-10-07.jpg";
		maxineImgs_JUNE[11] = "/wcsstore/HallmarkStore/images/Maxine/Max06-11-07.jpg";
		maxineImgs_JUNE[12] = "/wcsstore/HallmarkStore/images/Maxine/Max06-12-07.jpg";
		maxineImgs_JUNE[13] = "/wcsstore/HallmarkStore/images/Maxine/Max06-13-07.jpg";
		maxineImgs_JUNE[14] = "/wcsstore/HallmarkStore/images/Maxine/Max06-14-07.jpg";
		maxineImgs_JUNE[15] = "/wcsstore/HallmarkStore/images/Maxine/Max06-15-07.jpg";
		maxineImgs_JUNE[16] = "/wcsstore/HallmarkStore/images/Maxine/Max06-16-07.jpg";
		maxineImgs_JUNE[17] = "/wcsstore/HallmarkStore/images/Maxine/Max06-17-07.jpg";
		maxineImgs_JUNE[18] = "/wcsstore/HallmarkStore/images/Maxine/Max06-18-07.jpg";
		maxineImgs_JUNE[19] = "/wcsstore/HallmarkStore/images/Maxine/Max06-19-07.jpg";
		maxineImgs_JUNE[20] = "/wcsstore/HallmarkStore/images/Maxine/Max06-20-07.jpg";
		maxineImgs_JUNE[21] = "/wcsstore/HallmarkStore/images/Maxine/Max06-21-07.jpg";
		maxineImgs_JUNE[22] = "/wcsstore/HallmarkStore/images/Maxine/Max06-22-07.jpg";
		maxineImgs_JUNE[23] = "/wcsstore/HallmarkStore/images/Maxine/Max06-23-07.jpg";
		maxineImgs_JUNE[24] = "/wcsstore/HallmarkStore/images/Maxine/Max06-24-07.jpg";
		maxineImgs_JUNE[25] = "/wcsstore/HallmarkStore/images/Maxine/Max06-25-07.jpg";
		maxineImgs_JUNE[26] = "/wcsstore/HallmarkStore/images/Maxine/Max06-26-07.jpg";
		maxineImgs_JUNE[27] = "/wcsstore/HallmarkStore/images/Maxine/Max06-27-07.jpg";
		maxineImgs_JUNE[28] = "/wcsstore/HallmarkStore/images/Maxine/Max06-28-07.jpg";
		maxineImgs_JUNE[29] = "/wcsstore/HallmarkStore/images/Maxine/Max06-29-07.jpg";
		maxineImgs_JUNE[30] = "/wcsstore/HallmarkStore/images/Maxine/Max06-30-07.jpg";
		// *******************************************	
		
		// *******************************************
		// MAY 2007 IMAGE ARRAY
		var maxineImgs_MAY = new Array();
		maxineImgs_MAY[0] = "";
		maxineImgs_MAY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max05-01-07.jpg";
		maxineImgs_MAY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max05-02-07.jpg";
		maxineImgs_MAY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max05-03-07.jpg";
		maxineImgs_MAY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max05-04-07.jpg";
		maxineImgs_MAY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max05-05-07.jpg";
		maxineImgs_MAY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max05-06-07.jpg";
		maxineImgs_MAY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max05-07-07.jpg";
		maxineImgs_MAY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max05-08-07.jpg";
		maxineImgs_MAY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max05-09-07.jpg";
		maxineImgs_MAY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max05-10-07.jpg";
		maxineImgs_MAY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max05-11-07.jpg";
		maxineImgs_MAY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max05-12-07.jpg";
		maxineImgs_MAY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max05-13-07.jpg";
		maxineImgs_MAY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max05-14-07.jpg";
		maxineImgs_MAY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max05-15-07.jpg";
		maxineImgs_MAY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max05-16-07.jpg";
		maxineImgs_MAY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max05-17-07.jpg";
		maxineImgs_MAY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max05-18-07.jpg";
		maxineImgs_MAY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max05-19-07.jpg";
		maxineImgs_MAY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max05-20-07.jpg";
		maxineImgs_MAY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max05-21-07.jpg";
		maxineImgs_MAY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max05-22-07.jpg";
		maxineImgs_MAY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max05-23-07.jpg";
		maxineImgs_MAY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max05-24-07.jpg";
		maxineImgs_MAY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max05-25-07.jpg";
		maxineImgs_MAY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max05-26-07.jpg";
		maxineImgs_MAY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max05-27-07.jpg";
		maxineImgs_MAY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max05-28-07.jpg";
		maxineImgs_MAY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max05-29-07.jpg";
		maxineImgs_MAY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max05-30-07.jpg";
		maxineImgs_MAY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max05-31-07.jpg";
		// *******************************************	
		
		// *******************************************
		// APRIL 2007 IMAGE ARRAY
		var maxineImgs_APRIL = new Array();
		maxineImgs_APRIL[0] = "";
		maxineImgs_APRIL[1] = "/wcsstore/HallmarkStore/images/Maxine/Max04-01-07.jpg";
		maxineImgs_APRIL[2] = "/wcsstore/HallmarkStore/images/Maxine/Max04-02-07.jpg";
		maxineImgs_APRIL[3] = "/wcsstore/HallmarkStore/images/Maxine/Max04-03-07.jpg";
		maxineImgs_APRIL[4] = "/wcsstore/HallmarkStore/images/Maxine/Max04-04-07.jpg";
		maxineImgs_APRIL[5] = "/wcsstore/HallmarkStore/images/Maxine/Max04-05-07.jpg";
		maxineImgs_APRIL[6] = "/wcsstore/HallmarkStore/images/Maxine/Max04-06-07.jpg";
		maxineImgs_APRIL[7] = "/wcsstore/HallmarkStore/images/Maxine/Max04-07-07.jpg";
		maxineImgs_APRIL[8] = "/wcsstore/HallmarkStore/images/Maxine/Max04-08-07.jpg";
		maxineImgs_APRIL[9] = "/wcsstore/HallmarkStore/images/Maxine/Max04-09-07.jpg";
		maxineImgs_APRIL[10] = "/wcsstore/HallmarkStore/images/Maxine/Max04-10-07.jpg";
		maxineImgs_APRIL[11] = "/wcsstore/HallmarkStore/images/Maxine/Max04-11-07.jpg";
		maxineImgs_APRIL[12] = "/wcsstore/HallmarkStore/images/Maxine/Max04-12-07.jpg";
		maxineImgs_APRIL[13] = "/wcsstore/HallmarkStore/images/Maxine/Max04-13-07.jpg";
		maxineImgs_APRIL[14] = "/wcsstore/HallmarkStore/images/Maxine/Max04-14-07.jpg";
		maxineImgs_APRIL[15] = "/wcsstore/HallmarkStore/images/Maxine/Max04-15-07.jpg";
		maxineImgs_APRIL[16] = "/wcsstore/HallmarkStore/images/Maxine/Max04-16-07.jpg";
		maxineImgs_APRIL[17] = "/wcsstore/HallmarkStore/images/Maxine/Max04-17-07.jpg";
		maxineImgs_APRIL[18] = "/wcsstore/HallmarkStore/images/Maxine/Max04-18-07.jpg";
		maxineImgs_APRIL[19] = "/wcsstore/HallmarkStore/images/Maxine/Max04-19-07.jpg";
		maxineImgs_APRIL[20] = "/wcsstore/HallmarkStore/images/Maxine/Max04-20-07.jpg";
		maxineImgs_APRIL[21] = "/wcsstore/HallmarkStore/images/Maxine/Max04-21-07.jpg";
		maxineImgs_APRIL[22] = "/wcsstore/HallmarkStore/images/Maxine/Max04-22-07.jpg";
		maxineImgs_APRIL[23] = "/wcsstore/HallmarkStore/images/Maxine/Max04-23-07.jpg";
		maxineImgs_APRIL[24] = "/wcsstore/HallmarkStore/images/Maxine/Max04-24-07.jpg";
		maxineImgs_APRIL[25] = "/wcsstore/HallmarkStore/images/Maxine/Max04-25-07.jpg";
		maxineImgs_APRIL[26] = "/wcsstore/HallmarkStore/images/Maxine/Max04-26-07.jpg";
		maxineImgs_APRIL[27] = "/wcsstore/HallmarkStore/images/Maxine/Max04-27-07.jpg";
		maxineImgs_APRIL[28] = "/wcsstore/HallmarkStore/images/Maxine/Max04-28-07.jpg";
		maxineImgs_APRIL[29] = "/wcsstore/HallmarkStore/images/Maxine/Max04-29-07.jpg";
		maxineImgs_APRIL[30] = "/wcsstore/HallmarkStore/images/Maxine/Max04-30-07.jpg";
		// *******************************************	
		
		// *******************************************
		// MARCH 2007 IMAGE ARRAY
		var maxineImgs_MARCH = new Array();
		maxineImgs_MARCH[0] = "";
		maxineImgs_MARCH[1] = "/wcsstore/HallmarkStore/images/Maxine/Max03-01-07.jpg";
		maxineImgs_MARCH[2] = "/wcsstore/HallmarkStore/images/Maxine/Max03-02-07.jpg";
		maxineImgs_MARCH[3] = "/wcsstore/HallmarkStore/images/Maxine/Max03-03-07.jpg";
		maxineImgs_MARCH[4] = "/wcsstore/HallmarkStore/images/Maxine/Max03-04-07.jpg";
		maxineImgs_MARCH[5] = "/wcsstore/HallmarkStore/images/Maxine/Max03-05-07.jpg";
		maxineImgs_MARCH[6] = "/wcsstore/HallmarkStore/images/Maxine/Max03-06-07.jpg";
		maxineImgs_MARCH[7] = "/wcsstore/HallmarkStore/images/Maxine/Max03-07-07.jpg";
		maxineImgs_MARCH[8] = "/wcsstore/HallmarkStore/images/Maxine/Max03-08-07.jpg";
		maxineImgs_MARCH[9] = "/wcsstore/HallmarkStore/images/Maxine/Max03-09-07.jpg";
		maxineImgs_MARCH[10] = "/wcsstore/HallmarkStore/images/Maxine/Max03-10-07.jpg";
		maxineImgs_MARCH[11] = "/wcsstore/HallmarkStore/images/Maxine/Max03-11-07.jpg";
		maxineImgs_MARCH[12] = "/wcsstore/HallmarkStore/images/Maxine/Max03-12-07.jpg";
		maxineImgs_MARCH[13] = "/wcsstore/HallmarkStore/images/Maxine/Max03-13-07.jpg";
		maxineImgs_MARCH[14] = "/wcsstore/HallmarkStore/images/Maxine/Max03-14-07.jpg";
		maxineImgs_MARCH[15] = "/wcsstore/HallmarkStore/images/Maxine/Max03-15-07.jpg";
		maxineImgs_MARCH[16] = "/wcsstore/HallmarkStore/images/Maxine/Max03-16-07.jpg";
		maxineImgs_MARCH[17] = "/wcsstore/HallmarkStore/images/Maxine/Max03-17-07.jpg";
		maxineImgs_MARCH[18] = "/wcsstore/HallmarkStore/images/Maxine/Max03-18-07.jpg";
		maxineImgs_MARCH[19] = "/wcsstore/HallmarkStore/images/Maxine/Max03-19-07.jpg";
		maxineImgs_MARCH[20] = "/wcsstore/HallmarkStore/images/Maxine/Max03-20-07.jpg";
		maxineImgs_MARCH[21] = "/wcsstore/HallmarkStore/images/Maxine/Max03-21-07.jpg";
		maxineImgs_MARCH[22] = "/wcsstore/HallmarkStore/images/Maxine/Max03-22-07.jpg";
		maxineImgs_MARCH[23] = "/wcsstore/HallmarkStore/images/Maxine/Max03-23-07.jpg";
		maxineImgs_MARCH[24] = "/wcsstore/HallmarkStore/images/Maxine/Max03-24-07.jpg";
		maxineImgs_MARCH[25] = "/wcsstore/HallmarkStore/images/Maxine/Max03-25-07.jpg";
		maxineImgs_MARCH[26] = "/wcsstore/HallmarkStore/images/Maxine/Max03-26-07.jpg";
		maxineImgs_MARCH[27] = "/wcsstore/HallmarkStore/images/Maxine/Max03-27-07.jpg";
		maxineImgs_MARCH[28] = "/wcsstore/HallmarkStore/images/Maxine/Max03-28-07.jpg";
		maxineImgs_MARCH[29] = "/wcsstore/HallmarkStore/images/Maxine/Max03-29-07.jpg";
		maxineImgs_MARCH[30] = "/wcsstore/HallmarkStore/images/Maxine/Max03-30-07.jpg";
		maxineImgs_MARCH[31] = "/wcsstore/HallmarkStore/images/Maxine/Max03-31-07.jpg";
		// *******************************************	
		
		// *******************************************
		// FEBRUARY 2007 IMAGE ARRAY
		var maxineImgs_FEBRUARY = new Array();
		maxineImgs_FEBRUARY[0] = "";
		maxineImgs_FEBRUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max02-01-07.jpg";
		maxineImgs_FEBRUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max02-02-07.jpg";
		maxineImgs_FEBRUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max02-03-07.jpg";
		maxineImgs_FEBRUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max02-04-07.jpg";
		maxineImgs_FEBRUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max02-05-07.jpg";
		maxineImgs_FEBRUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max02-06-07.jpg";
		maxineImgs_FEBRUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max02-07-07.jpg";
		maxineImgs_FEBRUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max02-08-07.jpg";
		maxineImgs_FEBRUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max02-09-07.jpg";
		maxineImgs_FEBRUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max02-10-07.jpg";
		maxineImgs_FEBRUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max02-11-07.jpg";
		maxineImgs_FEBRUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max02-12-07.jpg";
		maxineImgs_FEBRUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max02-13-07.jpg";
		maxineImgs_FEBRUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max02-14-07.jpg";
		maxineImgs_FEBRUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max02-15-07.jpg";
		maxineImgs_FEBRUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max02-16-07.jpg";
		maxineImgs_FEBRUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max02-17-07.jpg";
		maxineImgs_FEBRUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max02-18-07.jpg";
		maxineImgs_FEBRUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max02-19-07.jpg";
		maxineImgs_FEBRUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max02-20-07.jpg";
		maxineImgs_FEBRUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max02-21-07.jpg";
		maxineImgs_FEBRUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max02-22-07.jpg";
		maxineImgs_FEBRUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max02-23-07.jpg";
		maxineImgs_FEBRUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max02-24-07.jpg";
		maxineImgs_FEBRUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max02-25-07.jpg";
		maxineImgs_FEBRUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max02-26-07.jpg";
		maxineImgs_FEBRUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max02-27-07.jpg";
		maxineImgs_FEBRUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max02-28-07.jpg";
		// *******************************************	
		
		// *******************************************
		// JANUARY 2007 IMAGE ARRAY
		var maxineImgs_JANUARY = new Array();
		maxineImgs_JANUARY[0] = "";
		maxineImgs_JANUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max01-01-07.jpg";
		maxineImgs_JANUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max01-02-07.jpg";
		maxineImgs_JANUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max01-03-07.jpg";
		maxineImgs_JANUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max01-04-07.jpg";
		maxineImgs_JANUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max01-05-07.jpg";
		maxineImgs_JANUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max01-06-07.jpg";
		maxineImgs_JANUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max01-07-07.jpg";
		maxineImgs_JANUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max01-08-07.jpg";
		maxineImgs_JANUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max01-09-07.jpg";
		maxineImgs_JANUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max01-10-07.jpg";
		maxineImgs_JANUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max01-11-07.jpg";
		maxineImgs_JANUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max01-12-07.jpg";
		maxineImgs_JANUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max01-13-07.jpg";
		maxineImgs_JANUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max01-14-07.jpg";
		maxineImgs_JANUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max01-15-07.jpg";
		maxineImgs_JANUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max01-16-07.jpg";
		maxineImgs_JANUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max01-17-07.jpg";
		maxineImgs_JANUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max01-18-07.jpg";
		maxineImgs_JANUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max01-19-07.jpg";
		maxineImgs_JANUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max01-20-07.jpg";
		maxineImgs_JANUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max01-21-07.jpg";
		maxineImgs_JANUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max01-22-07.jpg";
		maxineImgs_JANUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max01-23-07.jpg";
		maxineImgs_JANUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max01-24-07.jpg";
		maxineImgs_JANUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max01-25-07.jpg";
		maxineImgs_JANUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max01-26-07.jpg";
		maxineImgs_JANUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max01-27-07.jpg";
		maxineImgs_JANUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max01-28-07.jpg";
		maxineImgs_JANUARY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max01-29-07.jpg";
		maxineImgs_JANUARY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max01-30-07.jpg";
		maxineImgs_JANUARY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max01-31-07.jpg";
		// *******************************************	
	} else {
		// *******************************************
		// DECEMBER 2006 IMAGE ARRAY
		var maxineImgs_DECEMBER = new Array();
		maxineImgs_DECEMBER[0] = "";
		maxineImgs_DECEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max12-01-06.gif";
		maxineImgs_DECEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max12-02-06.gif";
		maxineImgs_DECEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max12-03-06.gif";
		maxineImgs_DECEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max12-04-06.gif";
		maxineImgs_DECEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max12-05-06.gif";
		maxineImgs_DECEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max12-06-06.gif";
		maxineImgs_DECEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max12-07-06.gif";
		maxineImgs_DECEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max12-08-06.gif";
		maxineImgs_DECEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max12-09-06.gif";
		maxineImgs_DECEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max12-10-06.gif";
		maxineImgs_DECEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max12-11-06.gif";
		maxineImgs_DECEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max12-12-06.gif";
		maxineImgs_DECEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max12-13-06.gif";
		maxineImgs_DECEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max12-14-06.gif";
		maxineImgs_DECEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max12-15-06.gif";
		maxineImgs_DECEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max12-16-06.gif";
		maxineImgs_DECEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max12-17-06.gif";
		maxineImgs_DECEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max12-18-06.gif";
		maxineImgs_DECEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max12-19-06.gif";
		maxineImgs_DECEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max12-20-06.gif";
		maxineImgs_DECEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max12-21-06.gif";
		maxineImgs_DECEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max12-22-06.gif";
		maxineImgs_DECEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max12-23-06.gif";
		maxineImgs_DECEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max12-24-06.gif";
		maxineImgs_DECEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max12-25-06.gif";
		maxineImgs_DECEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max12-26-06.gif";
		maxineImgs_DECEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max12-27-06.gif";
		maxineImgs_DECEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max12-28-06.gif";
		maxineImgs_DECEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max12-29-06.gif";
		maxineImgs_DECEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max12-30-06.gif";
		maxineImgs_DECEMBER[31] = "/wcsstore/HallmarkStore/images/Maxine/Max12-31-06.gif";
		// *******************************************
	
	
		// *******************************************
		// NOVEMBER 2006 IMAGE ARRAY
		var maxineImgs_NOVEMBER = new Array();
		maxineImgs_NOVEMBER[0] = "";
		maxineImgs_NOVEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max11-01-06.gif";
		maxineImgs_NOVEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max11-02-06.gif";
		maxineImgs_NOVEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max11-03-06.gif";
		maxineImgs_NOVEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max11-04-06.gif";
		maxineImgs_NOVEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max11-05-06.gif";
		maxineImgs_NOVEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max11-06-06.gif";
		maxineImgs_NOVEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max11-07-06.gif";
		maxineImgs_NOVEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max11-08-06.gif";
		maxineImgs_NOVEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max11-09-06.gif";
		maxineImgs_NOVEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max11-10-06.gif";
		maxineImgs_NOVEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max11-11-06.gif";
		maxineImgs_NOVEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max11-12-06.gif";
		maxineImgs_NOVEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max11-13-06.gif";
		maxineImgs_NOVEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max11-14-06.gif";
		maxineImgs_NOVEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max11-15-06.gif";
		maxineImgs_NOVEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max11-16-06.gif";
		maxineImgs_NOVEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max11-17-06.gif";
		maxineImgs_NOVEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max11-18-06.gif";
		maxineImgs_NOVEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max11-19-06.gif";
		maxineImgs_NOVEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max11-20-06.gif";
		maxineImgs_NOVEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max11-21-06.gif";
		maxineImgs_NOVEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max11-22-06.gif";
		maxineImgs_NOVEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max11-23-06.gif";
		maxineImgs_NOVEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max11-24-06.gif";
		maxineImgs_NOVEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max11-25-06.gif";
		maxineImgs_NOVEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max11-26-06.gif";
		maxineImgs_NOVEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max11-27-06.gif";
		maxineImgs_NOVEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max11-28-06.gif";
		maxineImgs_NOVEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max11-29-06.gif";
		maxineImgs_NOVEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max11-30-06.gif";
		// *******************************************
	
		
		// *******************************************
		// OCTOBER 2006 IMAGE ARRAY
		var maxineImgs_OCTOBER = new Array();
		maxineImgs_OCTOBER[0] = "";
		maxineImgs_OCTOBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max10-01-06.gif";
		maxineImgs_OCTOBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max10-02-06.gif";
		maxineImgs_OCTOBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max10-03-06.gif";
		maxineImgs_OCTOBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max10-04-06.gif";
		maxineImgs_OCTOBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max10-05-06.gif";
		maxineImgs_OCTOBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max10-06-06.gif";
		maxineImgs_OCTOBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max10-07-06.gif";
		maxineImgs_OCTOBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max10-08-06.gif";
		maxineImgs_OCTOBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max10-09-06.gif";
		maxineImgs_OCTOBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max10-10-06.gif";
		maxineImgs_OCTOBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max10-11-06.gif";
		maxineImgs_OCTOBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max10-12-06.gif";
		maxineImgs_OCTOBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max10-13-06.gif";
		maxineImgs_OCTOBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max10-14-06.gif";
		maxineImgs_OCTOBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max10-15-06.gif";
		maxineImgs_OCTOBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max10-16-06.gif";
		maxineImgs_OCTOBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max10-17-06.gif";
		maxineImgs_OCTOBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max10-18-06.gif";
		maxineImgs_OCTOBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max10-19-06.gif";
		maxineImgs_OCTOBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max10-20-06.gif";
		maxineImgs_OCTOBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max10-21-06.gif";
		maxineImgs_OCTOBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max10-22-06.gif";
		maxineImgs_OCTOBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max10-23-06.gif";
		maxineImgs_OCTOBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max10-24-06.gif";
		maxineImgs_OCTOBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max10-25-06.gif";
		maxineImgs_OCTOBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max10-26-06.gif";
		maxineImgs_OCTOBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max10-27-06.gif";
		maxineImgs_OCTOBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max10-28-06.gif";
		maxineImgs_OCTOBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max10-29-06.gif";
		maxineImgs_OCTOBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max10-30-06.gif";
		maxineImgs_OCTOBER[31] = "/wcsstore/HallmarkStore/images/Maxine/Max10-31-06.gif";
		// *******************************************
	
	
		// *******************************************
		// SEPTEMBER 2006 IMAGE ARRAY
		var maxineImgs_SEPTEMBER = new Array();
		maxineImgs_SEPTEMBER[0] = "";
		maxineImgs_SEPTEMBER[1] = "/wcsstore/HallmarkStore/images/Maxine/Max09-01-06.gif";
		maxineImgs_SEPTEMBER[2] = "/wcsstore/HallmarkStore/images/Maxine/Max09-02-06.gif";
		maxineImgs_SEPTEMBER[3] = "/wcsstore/HallmarkStore/images/Maxine/Max09-03-06.gif";
		maxineImgs_SEPTEMBER[4] = "/wcsstore/HallmarkStore/images/Maxine/Max09-04-06.gif";
		maxineImgs_SEPTEMBER[5] = "/wcsstore/HallmarkStore/images/Maxine/Max09-05-06.gif";
		maxineImgs_SEPTEMBER[6] = "/wcsstore/HallmarkStore/images/Maxine/Max09-06-06.gif";
		maxineImgs_SEPTEMBER[7] = "/wcsstore/HallmarkStore/images/Maxine/Max09-07-06.gif";
		maxineImgs_SEPTEMBER[8] = "/wcsstore/HallmarkStore/images/Maxine/Max09-08-06.gif";
		maxineImgs_SEPTEMBER[9] = "/wcsstore/HallmarkStore/images/Maxine/Max09-09-06.gif";
		maxineImgs_SEPTEMBER[10] = "/wcsstore/HallmarkStore/images/Maxine/Max09-10-06.gif";
		maxineImgs_SEPTEMBER[11] = "/wcsstore/HallmarkStore/images/Maxine/Max09-11-06.gif";
		maxineImgs_SEPTEMBER[12] = "/wcsstore/HallmarkStore/images/Maxine/Max09-12-06.gif";
		maxineImgs_SEPTEMBER[13] = "/wcsstore/HallmarkStore/images/Maxine/Max09-13-06.gif";
		maxineImgs_SEPTEMBER[14] = "/wcsstore/HallmarkStore/images/Maxine/Max09-14-06.gif";
		maxineImgs_SEPTEMBER[15] = "/wcsstore/HallmarkStore/images/Maxine/Max09-15-06.gif";
		maxineImgs_SEPTEMBER[16] = "/wcsstore/HallmarkStore/images/Maxine/Max09-16-06.gif";
		maxineImgs_SEPTEMBER[17] = "/wcsstore/HallmarkStore/images/Maxine/Max09-17-06.gif";
		maxineImgs_SEPTEMBER[18] = "/wcsstore/HallmarkStore/images/Maxine/Max09-18-06.gif";
		maxineImgs_SEPTEMBER[19] = "/wcsstore/HallmarkStore/images/Maxine/Max09-19-06.gif";
		maxineImgs_SEPTEMBER[20] = "/wcsstore/HallmarkStore/images/Maxine/Max09-20-06.gif";
		maxineImgs_SEPTEMBER[21] = "/wcsstore/HallmarkStore/images/Maxine/Max09-21-06.gif";
		maxineImgs_SEPTEMBER[22] = "/wcsstore/HallmarkStore/images/Maxine/Max09-22-06.gif";
		maxineImgs_SEPTEMBER[23] = "/wcsstore/HallmarkStore/images/Maxine/Max09-23-06.gif";
		maxineImgs_SEPTEMBER[24] = "/wcsstore/HallmarkStore/images/Maxine/Max09-24-06.gif";
		maxineImgs_SEPTEMBER[25] = "/wcsstore/HallmarkStore/images/Maxine/Max09-25-06.gif";
		maxineImgs_SEPTEMBER[26] = "/wcsstore/HallmarkStore/images/Maxine/Max09-26-06.gif";
		maxineImgs_SEPTEMBER[27] = "/wcsstore/HallmarkStore/images/Maxine/Max09-27-06.gif";
		maxineImgs_SEPTEMBER[28] = "/wcsstore/HallmarkStore/images/Maxine/Max09-28-06.gif";
		maxineImgs_SEPTEMBER[29] = "/wcsstore/HallmarkStore/images/Maxine/Max09-29-06.gif";
		maxineImgs_SEPTEMBER[30] = "/wcsstore/HallmarkStore/images/Maxine/Max09-30-06.gif";
		// *******************************************
	
	
		// *******************************************
		// AUGUST 2006 IMAGE ARRAY
		var maxineImgs_AUGUST = new Array();
		maxineImgs_AUGUST[0] = "";
		maxineImgs_AUGUST[1] = "/wcsstore/HallmarkStore/images/Maxine/Max08-01-06.gif";
		maxineImgs_AUGUST[2] = "/wcsstore/HallmarkStore/images/Maxine/Max08-02-06.gif";
		maxineImgs_AUGUST[3] = "/wcsstore/HallmarkStore/images/Maxine/Max08-03-06.gif";
		maxineImgs_AUGUST[4] = "/wcsstore/HallmarkStore/images/Maxine/Max08-04-06.gif";
		maxineImgs_AUGUST[5] = "/wcsstore/HallmarkStore/images/Maxine/Max08-05-06.gif";
		maxineImgs_AUGUST[6] = "/wcsstore/HallmarkStore/images/Maxine/Max08-06-06.gif";
		maxineImgs_AUGUST[7] = "/wcsstore/HallmarkStore/images/Maxine/Max08-07-06.gif";
		maxineImgs_AUGUST[8] = "/wcsstore/HallmarkStore/images/Maxine/Max08-08-06.gif";
		maxineImgs_AUGUST[9] = "/wcsstore/HallmarkStore/images/Maxine/Max08-09-06.gif";
		maxineImgs_AUGUST[10] = "/wcsstore/HallmarkStore/images/Maxine/Max08-10-06.gif";
		maxineImgs_AUGUST[11] = "/wcsstore/HallmarkStore/images/Maxine/Max08-11-06.gif";
		maxineImgs_AUGUST[12] = "/wcsstore/HallmarkStore/images/Maxine/Max08-12-06.gif";
		maxineImgs_AUGUST[13] = "/wcsstore/HallmarkStore/images/Maxine/Max08-13-06.gif";
		maxineImgs_AUGUST[14] = "/wcsstore/HallmarkStore/images/Maxine/Max08-14-06.gif";
		maxineImgs_AUGUST[15] = "/wcsstore/HallmarkStore/images/Maxine/Max08-15-06.gif";
		maxineImgs_AUGUST[16] = "/wcsstore/HallmarkStore/images/Maxine/Max08-16-06.gif";
		maxineImgs_AUGUST[17] = "/wcsstore/HallmarkStore/images/Maxine/Max08-17-06.gif";
		maxineImgs_AUGUST[18] = "/wcsstore/HallmarkStore/images/Maxine/Max08-18-06.gif";
		maxineImgs_AUGUST[19] = "/wcsstore/HallmarkStore/images/Maxine/Max08-19-06.gif";
		maxineImgs_AUGUST[20] = "/wcsstore/HallmarkStore/images/Maxine/Max08-20-06.gif";
		maxineImgs_AUGUST[21] = "/wcsstore/HallmarkStore/images/Maxine/Max08-21-06.gif";
		maxineImgs_AUGUST[22] = "/wcsstore/HallmarkStore/images/Maxine/Max08-22-06.gif";
		maxineImgs_AUGUST[23] = "/wcsstore/HallmarkStore/images/Maxine/Max08-23-06.gif";
		maxineImgs_AUGUST[24] = "/wcsstore/HallmarkStore/images/Maxine/Max08-24-06.gif";
		maxineImgs_AUGUST[25] = "/wcsstore/HallmarkStore/images/Maxine/Max08-25-06.gif";
		maxineImgs_AUGUST[26] = "/wcsstore/HallmarkStore/images/Maxine/Max08-26-06.gif";
		maxineImgs_AUGUST[27] = "/wcsstore/HallmarkStore/images/Maxine/Max08-27-06.gif";
		maxineImgs_AUGUST[28] = "/wcsstore/HallmarkStore/images/Maxine/Max08-28-06.gif";
		maxineImgs_AUGUST[29] = "/wcsstore/HallmarkStore/images/Maxine/Max08-29-06.gif";
		maxineImgs_AUGUST[30] = "/wcsstore/HallmarkStore/images/Maxine/Max08-30-06.gif";
		maxineImgs_AUGUST[31] = "/wcsstore/HallmarkStore/images/Maxine/Max08-31-06.gif";
		// *******************************************
	
		
		// *******************************************
		// JULY 2006 IMAGE ARRAY
		var maxineImgs_JULY = new Array();
		maxineImgs_JULY[0] = "";
		maxineImgs_JULY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max07-01-06.gif";
		maxineImgs_JULY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max07-02-06.gif";
		maxineImgs_JULY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max07-03-06.gif";
		maxineImgs_JULY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max07-04-06.gif";
		maxineImgs_JULY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max07-05-06.gif";
		maxineImgs_JULY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max07-06-06.gif";
		maxineImgs_JULY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max07-07-06.gif";
		maxineImgs_JULY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max07-08-06.gif";
		maxineImgs_JULY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max07-09-06.gif";
		maxineImgs_JULY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max07-10-06.gif";
		maxineImgs_JULY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max07-11-06.gif";
		maxineImgs_JULY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max07-12-06.gif";
		maxineImgs_JULY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max07-13-06.gif";
		maxineImgs_JULY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max07-14-06.gif";
		maxineImgs_JULY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max07-15-06.gif";
		maxineImgs_JULY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max07-16-06.gif";
		maxineImgs_JULY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max07-17-06.gif";
		maxineImgs_JULY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max07-18-06.gif";
		maxineImgs_JULY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max07-19-06.gif";
		maxineImgs_JULY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max07-20-06.gif";
		maxineImgs_JULY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max07-21-06.gif";
		maxineImgs_JULY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max07-22-06.gif";
		maxineImgs_JULY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max07-23-06.gif";
		maxineImgs_JULY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max07-24-06.gif";
		maxineImgs_JULY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max07-25-06.gif";
		maxineImgs_JULY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max07-26-06.gif";
		maxineImgs_JULY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max07-27-06.gif";
		maxineImgs_JULY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max07-28-06.gif";
		maxineImgs_JULY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max07-29-06.gif";
		maxineImgs_JULY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max07-30-06.gif";
		maxineImgs_JULY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max07-31-06.gif";
		// *******************************************
	
		
		// *******************************************
		// JUNE 2006 IMAGE ARRAY
		var maxineImgs_JUNE = new Array();
		maxineImgs_JUNE[0] = "";
		maxineImgs_JUNE[1] = "/wcsstore/HallmarkStore/images/Maxine/Max06-01-06.gif";
		maxineImgs_JUNE[2] = "/wcsstore/HallmarkStore/images/Maxine/Max06-02-06.gif";
		maxineImgs_JUNE[3] = "/wcsstore/HallmarkStore/images/Maxine/Max06-03-06.gif";
		maxineImgs_JUNE[4] = "/wcsstore/HallmarkStore/images/Maxine/Max06-04-06.gif";
		maxineImgs_JUNE[5] = "/wcsstore/HallmarkStore/images/Maxine/Max06-05-06.gif";
		maxineImgs_JUNE[6] = "/wcsstore/HallmarkStore/images/Maxine/Max06-06-06.gif";
		maxineImgs_JUNE[7] = "/wcsstore/HallmarkStore/images/Maxine/Max06-07-06.gif";
		maxineImgs_JUNE[8] = "/wcsstore/HallmarkStore/images/Maxine/Max06-08-06.gif";
		maxineImgs_JUNE[9] = "/wcsstore/HallmarkStore/images/Maxine/Max06-09-06.gif";
		maxineImgs_JUNE[10] = "/wcsstore/HallmarkStore/images/Maxine/Max06-10-06.gif";
		maxineImgs_JUNE[11] = "/wcsstore/HallmarkStore/images/Maxine/Max06-11-06.gif";
		maxineImgs_JUNE[12] = "/wcsstore/HallmarkStore/images/Maxine/Max06-12-06.gif";
		maxineImgs_JUNE[13] = "/wcsstore/HallmarkStore/images/Maxine/Max06-13-06.gif";
		maxineImgs_JUNE[14] = "/wcsstore/HallmarkStore/images/Maxine/Max06-14-06.gif";
		maxineImgs_JUNE[15] = "/wcsstore/HallmarkStore/images/Maxine/Max06-15-06.gif";
		maxineImgs_JUNE[16] = "/wcsstore/HallmarkStore/images/Maxine/Max06-16-06.gif";
		maxineImgs_JUNE[17] = "/wcsstore/HallmarkStore/images/Maxine/Max06-17-06.gif";
		maxineImgs_JUNE[18] = "/wcsstore/HallmarkStore/images/Maxine/Max06-18-06.gif";
		maxineImgs_JUNE[19] = "/wcsstore/HallmarkStore/images/Maxine/Max06-19-06.gif";
		maxineImgs_JUNE[20] = "/wcsstore/HallmarkStore/images/Maxine/Max06-20-06.gif";
		maxineImgs_JUNE[21] = "/wcsstore/HallmarkStore/images/Maxine/Max06-21-06.gif";
		maxineImgs_JUNE[22] = "/wcsstore/HallmarkStore/images/Maxine/Max06-22-06.gif";
		maxineImgs_JUNE[23] = "/wcsstore/HallmarkStore/images/Maxine/Max06-23-06.gif";
		maxineImgs_JUNE[24] = "/wcsstore/HallmarkStore/images/Maxine/Max06-24-06.gif";
		maxineImgs_JUNE[25] = "/wcsstore/HallmarkStore/images/Maxine/Max06-25-06.gif";
		maxineImgs_JUNE[26] = "/wcsstore/HallmarkStore/images/Maxine/Max06-26-06.gif";
		maxineImgs_JUNE[27] = "/wcsstore/HallmarkStore/images/Maxine/Max06-27-06.gif";
		maxineImgs_JUNE[28] = "/wcsstore/HallmarkStore/images/Maxine/Max06-28-06.gif";
		maxineImgs_JUNE[29] = "/wcsstore/HallmarkStore/images/Maxine/Max06-29-06.gif";
		maxineImgs_JUNE[30] = "/wcsstore/HallmarkStore/images/Maxine/Max06-30-06.gif";
		// *******************************************
	
		// *******************************************
		// MAY 2006 IMAGE ARRAY
		var maxineImgs_MAY = new Array();
		maxineImgs_MAY[0] = "";
		maxineImgs_MAY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max05-01-06.gif";
		maxineImgs_MAY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max05-02-06.gif";
		maxineImgs_MAY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max05-03-06.gif";
		maxineImgs_MAY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max05-04-06.gif";
		maxineImgs_MAY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max05-05-06.gif";
		maxineImgs_MAY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max05-06-06.gif";
		maxineImgs_MAY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max05-07-06.gif";
		maxineImgs_MAY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max05-08-06.gif";
		maxineImgs_MAY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max05-09-06.gif";
		maxineImgs_MAY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max05-10-06.gif";
		maxineImgs_MAY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max05-11-06.gif";
		maxineImgs_MAY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max05-12-06.gif";
		maxineImgs_MAY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max05-13-06.gif";
		maxineImgs_MAY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max05-14-06.gif";
		maxineImgs_MAY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max05-15-06.gif";
		maxineImgs_MAY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max05-16-06.gif";
		maxineImgs_MAY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max05-17-06.gif";
		maxineImgs_MAY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max05-18-06.gif";
		maxineImgs_MAY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max05-19-06.gif";
		maxineImgs_MAY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max05-20-06.gif";
		maxineImgs_MAY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max05-21-06.gif";
		maxineImgs_MAY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max05-22-06.gif";
		maxineImgs_MAY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max05-23-06.gif";
		maxineImgs_MAY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max05-24-06.gif";
		maxineImgs_MAY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max05-25-06.gif";
		maxineImgs_MAY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max05-26-06.gif";
		maxineImgs_MAY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max05-27-06.gif";
		maxineImgs_MAY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max05-28-06.gif";
		maxineImgs_MAY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max05-29-06.gif";
		maxineImgs_MAY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max05-30-06.gif";
		maxineImgs_MAY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max05-31-06.gif";
		// *******************************************
	
		// *******************************************
		// APRIL 2006 IMAGE ARRAY
		var maxineImgs_APRIL = new Array();
		maxineImgs_APRIL[0] = "";
		maxineImgs_APRIL[1] = "/wcsstore/HallmarkStore/images/Maxine/Max04-01-06.gif";
		maxineImgs_APRIL[2] = "/wcsstore/HallmarkStore/images/Maxine/Max04-02-06.gif";
		maxineImgs_APRIL[3] = "/wcsstore/HallmarkStore/images/Maxine/Max04-03-06.gif";
		maxineImgs_APRIL[4] = "/wcsstore/HallmarkStore/images/Maxine/Max04-04-06.gif";
		maxineImgs_APRIL[5] = "/wcsstore/HallmarkStore/images/Maxine/Max04-05-06.gif";
		maxineImgs_APRIL[6] = "/wcsstore/HallmarkStore/images/Maxine/Max04-06-06.gif";
		maxineImgs_APRIL[7] = "/wcsstore/HallmarkStore/images/Maxine/Max04-07-06.gif";
		maxineImgs_APRIL[8] = "/wcsstore/HallmarkStore/images/Maxine/Max04-08-06.gif";
		maxineImgs_APRIL[9] = "/wcsstore/HallmarkStore/images/Maxine/Max04-09-06.gif";
		maxineImgs_APRIL[10] = "/wcsstore/HallmarkStore/images/Maxine/Max04-10-06.gif";
		maxineImgs_APRIL[11] = "/wcsstore/HallmarkStore/images/Maxine/Max04-11-06.gif";
		maxineImgs_APRIL[12] = "/wcsstore/HallmarkStore/images/Maxine/Max04-12-06.gif";
		maxineImgs_APRIL[13] = "/wcsstore/HallmarkStore/images/Maxine/Max04-13-06.gif";
		maxineImgs_APRIL[14] = "/wcsstore/HallmarkStore/images/Maxine/Max04-14-06.gif";
		maxineImgs_APRIL[15] = "/wcsstore/HallmarkStore/images/Maxine/Max04-15-06.gif";
		maxineImgs_APRIL[16] = "/wcsstore/HallmarkStore/images/Maxine/Max04-16-06.gif";
		maxineImgs_APRIL[17] = "/wcsstore/HallmarkStore/images/Maxine/Max04-17-06.gif";
		maxineImgs_APRIL[18] = "/wcsstore/HallmarkStore/images/Maxine/Max04-18-06.gif";
		maxineImgs_APRIL[19] = "/wcsstore/HallmarkStore/images/Maxine/Max04-19-06.gif";
		maxineImgs_APRIL[20] = "/wcsstore/HallmarkStore/images/Maxine/Max04-20-06.gif";
		maxineImgs_APRIL[21] = "/wcsstore/HallmarkStore/images/Maxine/Max04-21-06.gif";
		maxineImgs_APRIL[22] = "/wcsstore/HallmarkStore/images/Maxine/Max04-22-06.gif";
		maxineImgs_APRIL[23] = "/wcsstore/HallmarkStore/images/Maxine/Max04-23-06.gif";
		maxineImgs_APRIL[24] = "/wcsstore/HallmarkStore/images/Maxine/Max04-24-06.gif";
		maxineImgs_APRIL[25] = "/wcsstore/HallmarkStore/images/Maxine/Max04-25-06.gif";
		maxineImgs_APRIL[26] = "/wcsstore/HallmarkStore/images/Maxine/Max04-26-06.gif";
		maxineImgs_APRIL[27] = "/wcsstore/HallmarkStore/images/Maxine/Max04-27-06.gif";
		maxineImgs_APRIL[28] = "/wcsstore/HallmarkStore/images/Maxine/Max04-28-06.gif";
		maxineImgs_APRIL[29] = "/wcsstore/HallmarkStore/images/Maxine/Max04-29-06.gif";
		maxineImgs_APRIL[30] = "/wcsstore/HallmarkStore/images/Maxine/Max04-30-06.gif";
		// *******************************************
	
		// *******************************************
		// MARCH 2006 IMAGE ARRAY
		var maxineImgs_MARCH = new Array();
		maxineImgs_MARCH[0] = "";
		maxineImgs_MARCH[1] = "/wcsstore/HallmarkStore/images/Maxine/Max03-01-06.gif";
		maxineImgs_MARCH[2] = "/wcsstore/HallmarkStore/images/Maxine/Max03-02-06.gif";
		maxineImgs_MARCH[3] = "/wcsstore/HallmarkStore/images/Maxine/Max03-03-06.gif";
		maxineImgs_MARCH[4] = "/wcsstore/HallmarkStore/images/Maxine/Max03-04-06.gif";
		maxineImgs_MARCH[5] = "/wcsstore/HallmarkStore/images/Maxine/Max03-05-06.gif";
		maxineImgs_MARCH[6] = "/wcsstore/HallmarkStore/images/Maxine/Max03-06-06.gif";
		maxineImgs_MARCH[7] = "/wcsstore/HallmarkStore/images/Maxine/Max03-07-06.gif";
		maxineImgs_MARCH[8] = "/wcsstore/HallmarkStore/images/Maxine/Max03-08-06.gif";
		maxineImgs_MARCH[9] = "/wcsstore/HallmarkStore/images/Maxine/Max03-09-06.gif";
		maxineImgs_MARCH[10] = "/wcsstore/HallmarkStore/images/Maxine/Max03-10-06.gif";
		maxineImgs_MARCH[11] = "/wcsstore/HallmarkStore/images/Maxine/Max03-11-06.gif";
		maxineImgs_MARCH[12] = "/wcsstore/HallmarkStore/images/Maxine/Max03-12-06.gif";
		maxineImgs_MARCH[13] = "/wcsstore/HallmarkStore/images/Maxine/Max03-13-06.gif";
		maxineImgs_MARCH[14] = "/wcsstore/HallmarkStore/images/Maxine/Max03-14-06.gif";
		maxineImgs_MARCH[15] = "/wcsstore/HallmarkStore/images/Maxine/Max03-15-06.gif";
		maxineImgs_MARCH[16] = "/wcsstore/HallmarkStore/images/Maxine/Max03-16-06.gif";
		maxineImgs_MARCH[17] = "/wcsstore/HallmarkStore/images/Maxine/Max03-17-06.gif";
		maxineImgs_MARCH[18] = "/wcsstore/HallmarkStore/images/Maxine/Max03-18-06.gif";
		maxineImgs_MARCH[19] = "/wcsstore/HallmarkStore/images/Maxine/Max03-19-06.gif";
		maxineImgs_MARCH[20] = "/wcsstore/HallmarkStore/images/Maxine/Max03-20-06.gif";
		maxineImgs_MARCH[21] = "/wcsstore/HallmarkStore/images/Maxine/Max03-21-06.gif";
		maxineImgs_MARCH[22] = "/wcsstore/HallmarkStore/images/Maxine/Max03-22-06.gif";
		maxineImgs_MARCH[23] = "/wcsstore/HallmarkStore/images/Maxine/Max03-23-06.gif";
		maxineImgs_MARCH[24] = "/wcsstore/HallmarkStore/images/Maxine/Max03-24-06.gif";
		maxineImgs_MARCH[25] = "/wcsstore/HallmarkStore/images/Maxine/Max03-25-06.gif";
		maxineImgs_MARCH[26] = "/wcsstore/HallmarkStore/images/Maxine/Max03-26-06.gif";
		maxineImgs_MARCH[27] = "/wcsstore/HallmarkStore/images/Maxine/Max03-27-06.gif";
		maxineImgs_MARCH[28] = "/wcsstore/HallmarkStore/images/Maxine/Max03-28-06.gif";
		maxineImgs_MARCH[29] = "/wcsstore/HallmarkStore/images/Maxine/Max03-29-06.gif";
		maxineImgs_MARCH[30] = "/wcsstore/HallmarkStore/images/Maxine/Max03-30-06.gif";
		maxineImgs_MARCH[31] = "/wcsstore/HallmarkStore/images/Maxine/Max03-31-06.gif";
		// *******************************************
	
		// *******************************************
		// FEBRUARY 2006 IMAGE ARRAY
		var maxineImgs_FEBRUARY = new Array();
		maxineImgs_FEBRUARY[0] = "";
		maxineImgs_FEBRUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max02-01-06.gif";
		maxineImgs_FEBRUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max02-02-06.gif";
		maxineImgs_FEBRUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max02-03-06.gif";
		maxineImgs_FEBRUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max02-04-06.gif";
		maxineImgs_FEBRUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max02-05-06.gif";
		maxineImgs_FEBRUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max02-06-06.gif";
		maxineImgs_FEBRUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max02-07-06.gif";
		maxineImgs_FEBRUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max02-08-06.gif";
		maxineImgs_FEBRUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max02-09-06.gif";
		maxineImgs_FEBRUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max02-10-06.gif";
		maxineImgs_FEBRUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max02-11-06.gif";
		maxineImgs_FEBRUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max02-12-06.gif";
		maxineImgs_FEBRUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max02-13-06.gif";
		maxineImgs_FEBRUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max02-14-06.gif";
		maxineImgs_FEBRUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max02-15-06.gif";
		maxineImgs_FEBRUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max02-16-06.gif";
		maxineImgs_FEBRUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max02-17-06.gif";
		maxineImgs_FEBRUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max02-18-06.gif";
		maxineImgs_FEBRUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max02-19-06.gif";
		maxineImgs_FEBRUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max02-20-06.gif";
		maxineImgs_FEBRUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max02-21-06.gif";
		maxineImgs_FEBRUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max02-22-06.gif";
		maxineImgs_FEBRUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max02-23-06.gif";
		maxineImgs_FEBRUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max02-24-06.gif";
		maxineImgs_FEBRUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max02-25-06.gif";
		maxineImgs_FEBRUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max02-26-06.gif";
		maxineImgs_FEBRUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max02-27-06.gif";
		maxineImgs_FEBRUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max02-28-06.gif";
		// *******************************************
	
		// *******************************************
		// JANUARY 2006 IMAGE ARRAY
		var maxineImgs_JANUARY = new Array();
		maxineImgs_JANUARY[0] = "";
		maxineImgs_JANUARY[1] = "/wcsstore/HallmarkStore/images/Maxine/Max01-01-06.gif";
		maxineImgs_JANUARY[2] = "/wcsstore/HallmarkStore/images/Maxine/Max01-02-06.gif";
		maxineImgs_JANUARY[3] = "/wcsstore/HallmarkStore/images/Maxine/Max01-03-06.gif";
		maxineImgs_JANUARY[4] = "/wcsstore/HallmarkStore/images/Maxine/Max01-04-06.gif";
		maxineImgs_JANUARY[5] = "/wcsstore/HallmarkStore/images/Maxine/Max01-05-06.gif";
		maxineImgs_JANUARY[6] = "/wcsstore/HallmarkStore/images/Maxine/Max01-06-06.gif";
		maxineImgs_JANUARY[7] = "/wcsstore/HallmarkStore/images/Maxine/Max01-07-06.gif";
		maxineImgs_JANUARY[8] = "/wcsstore/HallmarkStore/images/Maxine/Max01-08-06.gif";
		maxineImgs_JANUARY[9] = "/wcsstore/HallmarkStore/images/Maxine/Max01-09-06.gif";
		maxineImgs_JANUARY[10] = "/wcsstore/HallmarkStore/images/Maxine/Max01-10-06.gif";
		maxineImgs_JANUARY[11] = "/wcsstore/HallmarkStore/images/Maxine/Max01-11-06.gif";
		maxineImgs_JANUARY[12] = "/wcsstore/HallmarkStore/images/Maxine/Max01-12-06.gif";
		maxineImgs_JANUARY[13] = "/wcsstore/HallmarkStore/images/Maxine/Max01-13-06.gif";
		maxineImgs_JANUARY[14] = "/wcsstore/HallmarkStore/images/Maxine/Max01-14-06.gif";
		maxineImgs_JANUARY[15] = "/wcsstore/HallmarkStore/images/Maxine/Max01-15-06.gif";
		maxineImgs_JANUARY[16] = "/wcsstore/HallmarkStore/images/Maxine/Max01-16-06.gif";
		maxineImgs_JANUARY[17] = "/wcsstore/HallmarkStore/images/Maxine/Max01-17-06.gif";
		maxineImgs_JANUARY[18] = "/wcsstore/HallmarkStore/images/Maxine/Max01-18-06.gif";
		maxineImgs_JANUARY[19] = "/wcsstore/HallmarkStore/images/Maxine/Max01-19-06.gif";
		maxineImgs_JANUARY[20] = "/wcsstore/HallmarkStore/images/Maxine/Max01-20-06.gif";
		maxineImgs_JANUARY[21] = "/wcsstore/HallmarkStore/images/Maxine/Max01-21-06.gif";
		maxineImgs_JANUARY[22] = "/wcsstore/HallmarkStore/images/Maxine/Max01-22-06.gif";
		maxineImgs_JANUARY[23] = "/wcsstore/HallmarkStore/images/Maxine/Max01-23-06.gif";
		maxineImgs_JANUARY[24] = "/wcsstore/HallmarkStore/images/Maxine/Max01-24-06.gif";
		maxineImgs_JANUARY[25] = "/wcsstore/HallmarkStore/images/Maxine/Max01-25-06.gif";
		maxineImgs_JANUARY[26] = "/wcsstore/HallmarkStore/images/Maxine/Max01-26-06.gif";
		maxineImgs_JANUARY[27] = "/wcsstore/HallmarkStore/images/Maxine/Max01-27-06.gif";
		maxineImgs_JANUARY[28] = "/wcsstore/HallmarkStore/images/Maxine/Max01-28-06.gif";
		maxineImgs_JANUARY[29] = "/wcsstore/HallmarkStore/images/Maxine/Max01-29-06.gif";
		maxineImgs_JANUARY[30] = "/wcsstore/HallmarkStore/images/Maxine/Max01-30-06.gif";
		maxineImgs_JANUARY[31] = "/wcsstore/HallmarkStore/images/Maxine/Max01-31-06.gif";
		// *******************************************	
	}