// JavaScript Document
/*	var i;
	var picPath;
	i = Math.round(Math.random() * 10) + 1;
	picPath = "\\headers\\newheader" + i + ".jpg";
	document.headpic.src = "" + picPath;

	const JANUARY = 1;
	const FEBRUARY = 2;
	const MARCH = 3;
	const APRIL = 4;
	const MAY = 5;
	const JUNE = 6;
	const JULY = 7;
	const AUGUST = 8;
	const SEPTEMBER = 9;
	const OCTOBER = 10;
	const NOVEMBER = 11;
	const DECEMBER = 12;
	*/
	var i;
	var picPath;
	
	i = Math.round(Math.random() * 3) + 1;
//	document.write(i + "<br>");
//	document.write(theMonth + "<br>");
	picPath = "/quotes/quote" + i + ".jpg";
//	document.write(picPath);
	document.quotePic.src = "" + picPath;

