function gettip()
{
var today = new Date();
	day = today.getDay()+1;
	quote= "quote";
	author = "author";

if (day == "1") { //Sunday
	quote = "Those who cannot change their minds cannot change anything.";
	author = "- George Bernard Shaw";
	}
if (day == "2") { //Monday
	quote = "Most misfortunes are the result of misused time.";
	author = "- Napoleon Hill";
	}
if (day == "3") { //Tuesday
	quote = "There are three ingredients in the good life: learning, earning and yearning.";
	author = "- Christopher Morley";
	}	
if (day == "4") { //Wednesday
	quote = "Courage is the ladder on which all the other virtues mount.";
	author = " ";
	}	
if (day == "5") { //Thursday
	quote = "Tough times never last, but tough people DO.";
	author = " ";
	}	
if (day == "6") { //Friday
	quote = "People are not remembered by how few times they fail, but how often they succeed.";
	author = "- Thomas Edison";
	}	
if (day == "7") { //Saturday
	quote = "The difference between ordinary and extraordinary is that little bit of 'extra’.";
	author = " ";
	}

document.write('"' + quote + '"' + '<br>' + author);

}

