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] = "Our <a href='nutrition/reference/pyramid.html'><font color=#FFEECC>Food Pyramid</font></a> reference includes information on the latest FDA food reccommendations, and how you can feel better by eating a balanced diet.";
quotes[1] = "Are you one of the many teens suffering from acne? We have <a href='hygiene/reference/acne.html'><font color=#FFEECC>ideas and tips</font></a> on how to dampen it's effects.";
quotes[2] = "We can help you to <a href='themind/reference/stress.html'><font color=#FFEECC>alleviate the stress</font></a> in your life through better planning and time management.";
quotes[3] = "Tobacco addictions cause damage among thousands of teens every day. Do you support imposing stronger restrictions on the tobacco industry? <a href='addictions/reference/email.html'><font color=#FFEECC>Email your senator!</font></a>";
quotes[4] = "Our online <a href='sports/reference/whichsport.html'><font color=#FFEECC>reference area</font></a> will help you to select a sport that you enjoy and can benefit you healthily and physically.";
quotes[5] = "Do your teeth need braces? Our <a href='hygiene/reference/braces.html'><font color=#FFEECC>articles</font></a> on Hygiene and Dental Health specifically cover different aspects of wearing braces.";
quotes[6] = "Interested in eating more healthily, but don't know where to start? Our library of <a href='nutrition/reference/videos.html'><font color=#FFEECC>cooking videos</font></a> can help you with ideas for healthy (and yummy!) snacks.";

qinit();

document.writeln(quotes[qrand(6)]);