function dayofWeek()
{
	return new Date().getDay()
}

function colorofDay()
{
	switch (dayofWeek())
	{
		case 1 :

			document.bgColor = "#F8AA07"
			break;

		case 2 :

			document.bgColor = "#FF66CC"
			break;

		case 3 :

			document.bgColor = "#FFFFFF"
			break;

		case 4 : 

			document.bgColor = "#009900"
			break;

		case 5 :

			document.bgColor = "#FF6600"
			break;

		case 6 :

			document.bgColor = "#CC66FF"
			break;

		case 0 :

			document.bgColor = "#6699FF"
			break;
	}
}
