function writeDailyContent () {

	today = new Date
	var dayOfWeek = today.getDay();
	
/* 	To add a new outfit to this script, follow these three steps.

	STEP 1) Update a given day by changing the contents of its variable.
			This variable muust contain three strings, in single quotes & separated
			by commas.  The first string is the pullquote, and the second is the detail text,
			and the third is the image tag.  Here's an example:
	
		EXAMPLE
		var Monday = ['Monday Pullquote','<b>Note:</b> this is a description of the Monday outfit','<img src="img/monday.gif" width="75" height="100" border="0">'];
*/
	
	var Sunday = ['&#147;in the sun&#148;','Sunday:<br><br>Go where it&#146;s warm. And bring sunscreen','<img src="img/kirsten/sunday.jpg" width="95" height="115" border="0">'];
	var Monday = ['&#147;bleeding heart&#148;','Monday:<br><br>Bring back liberalism. Better yet; bring back socialism. Free health care and education. No more homelessness.','<img src="img/kirsten/monday.jpg" width="95" height="115" border="0">'];
	var Tuesday = ['&#147;go there&#148;','Tuesday:<br><br>Go there. No there. Heel. Sit doggie. Good doggie.','<img src="img/kirsten/tuesday.jpg" width="95" height="115" border="0">'];
	var Wednesday = ['&#147;eat the rich&#148;','Wednesday:<br><br>I&#146;m not actually opposed to wealth, I&#146;m opposed to poverty. We should all be rich.','<img src="img/kirsten/wednesday.jpg" width="95" height="115" border="0">'];
	var Thursday = ['&#147;ahoy matey&#148;','Thursday:<br><br>Ahoy matey, anchors away. If you forget your anchors you could fly up into the sky. Not that that would be such a bad thing.','<img src="img/kirsten/thursday.jpg" width="95" height="115" border="0">'];
	var Friday = ['&#147;Brooklyn&#148;','Friday:<br><br>The future belongs to Brooklyn. I belong to Brooklyn. At least until the real estate market in Manhattan collapses.','<img src="img/kirsten/friday.jpg" width="95" height="115" border="0">'];
	var Saturday = ['&#147;avoid self deception&#148;','Saturday:<br><br>Avoid self deception. And self obsession. Be kind to others.','<img src="img/kirsten/saturday.jpg" width="95" height="115" border="0">'];
	
	var outfitArray = [Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday];
	
	selectedOutfit = outfitArray[dayOfWeek];
	outfitString = new String;
	
/* 	
	STEP 3)  If you need to modify the HTML, do so by modifying the contentString below.
*/
	
	outfitString += '<td bgcolor="#660066" align="left" valign="top" class="bighead" colspan="2" height="125">';
	outfitString += selectedOutfit[0];
	outfitString += '<td align="center" valign="middle" bgcolor="#660066"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#FFFFFF" align="left" valign="top"><td align="center" valign="middle" bgcolor="#993399"><table border="0" cellspacing="0" cellpadding="0" width="100%"><tr align="left" valign="top"><td class="white" bgcolor="#660066" align="left" valign="top">';
	outfitString += selectedOutfit[1];
	outfitString += '</td><td width="95" bgcolor="#660066" align="right" valign="top">';
	outfitString += selectedOutfit[2];
	outfitString += '</td></tr></table></td></tr></table></td>';
	
	document.write(outfitString);
	
/*	STEP 4)  Call this script from within the document. */
	
}

