function timeOut() {
	window.setTimeout("alertMe()", 150000);
}

function alertMe() {
	alert("Sitting around long enough?\n\nIf you can, go do something active like jumping rope or bike riding.  You can always come back later.\n\nNow is a great time to find out what your food can do for you.");
}