var today = new Date();
var dayWeek = today.getDay();


if (dayWeek == "0") {
	dayout = "Sunday";
	messout = 'Sundays - You finish up dinner and help the kids with their school work.  You have some laundary to get done and the furthest from your mind right now are all of those family photos.';
}

if (dayWeek == "1") {
	dayout = "Monday";
	messout = 'Mondays - back to the busy grind.  Parents off to work, children off to school, and all of those after school activities to drive around to.  The weekend is over and a new week is starting.  All you are thinking is, "I still did nothing with those boxes of pictures I have.';
}

if (dayWeek == "2") {
	dayout = "Tuesday";
	messout = "Tuesdays - You have to help your husband get ready for a business trip and one of your kids needs to run into town for som school supplies.   The weekend is over and a new week is starting.  You spoke with a friend on the phone and they said they are working on a family scrapbook.";
}

if (dayWeek == "3") {
	dayout = "Wednesday";
	messout = "Wednesdays - Your husband is away for the night, and the kids have a friend over.  You ordered pizza for dinner and you have a few hours before you have to get the kids off to bed.  As you start for the closet where you keep the picture, there is a knock at the door.  You neighbor wants to come in for a cup of cofee and to show you their new scrapbook project.";
}

if (dayWeek == "4") {
	dayout = "Thursday";
	messout = 'Thursdays - Your husband comes home of his trip and you spend the evening discussing it.  All you can think about is, "Maybe I will get to those pictures this weekend.';
}

if (dayWeek == "5") {
	dayout = "Friday";
	messout = "Fridays - Your husband calls and says he landed that deal he was working on and wants to take the family out for the evening.  Nobody should ever resist a family night out... that is origination of memories.  Those photos can wait for another time.";
}

if (dayWeek == "6") {
	dayout = "Saturday";
	messout = "Saturday - Relatives call and want to come over for dinner.  You wanted to work on organizing our photos, but just don't seem to have the time today.";
}


document.write('<div class="titlebar" align=center>' + dayout + '</div>');
document.write('<div class="sidebar">');
document.write(messout);

