function qrand(n) {
	RandSeed = (RandMultiplier * RandSeed + RandIncrement) % 0x7fffffff;
	return (RandSeed >> 16) % n;
}

function qinit() {
	RandMultiplier = 0x015a4e35;
	RandIncrement = 1;
	var now = new Date();
	RandSeed = now.getTime() % 0xffffffff;
	FirstSentence = 1;
	FirstAmerica = 1;
}

var quotes = new Array();
quotes[0] = "<em>Smoking can kill you.</em> Every year, tobacco addictions kill four times as many people as all other drugs, suicides, murders, accidents, and AIDS fatalities put together.";
quotes[1] = "Every thirteen seconds, a person dies from an illness related to a tobacco addiction.";
quotes[2] = "Almost 418,000 people die from smoking each year.";
quotes[3] = "Around 3,000 youths around the nation start smoking every day. During their lifetime, nearly a third of them will die due to a tobacco-related illness.";
quotes[4] = "Drinking six to eight glasses of water or juice a day can dramatically increase the efficiency of your digestion and metabolic functions.";
quotes[5] = "When exercising, you should start slowly and build up in intensity to avoid hurting your body.";
quotes[6] = "You should have 2-4 servings of fruit a day. (And no, a Cherry Coke doesn't count.) You should also have at least 3-5 servings of vegetables a day.";

qinit();

document.writeln(quotes[qrand(6)]);
