// Display a link to the cafepress.com shop with a random image.
function cafePressLink() {
	var images = new Array('mug2.gif', 
	                       'apron.gif', 
						   'sticker.gif',
						   'blueApron.gif',
						   'card.gif',
						   'babyBib.gif');
	var titles = new Array ('The perfect mug for hot cocoa!',
	                        'The apron is your friend.',
							'Cool Christmas housewares from Christmas Baking with SusieJ',
							'The apron is your friend',
							'Oh! Christmas cards!',
							'Baby I was born to bake');
	var now    = new Date();

	var index = now.getTime() % images.length;
	document.write ('<a HREF="http://www.cafepress.com/xmasbaking" title="' + titles[index] + '"><img src="/images/' + images[index] + '" / border="0" align="right" alt="' + titles[index] + '"></a>');
}

