
q1 = "\"Harry Lorayne is 'Mr. Memory' - he knows more about memory training than anyone in the world. His result-oriented methods make it easy to remember facts - names, faces, numbers, technical material - anything.\" (Little Brown & Co.)";
q2 = "\"HARRY LORAYNE is the foremost memory-training specialist in the world. His memory-improvement techniques will be the reference for memory training for perhaps the next five centuries.\"  (Arlie Lazarus; Pres. Jamesway Corp.)";
q3 = "\"HARRY LORAYNE IS THE YODA OF MEMORY TRAINING.\"  (TIME MAGAZINE)";
q4 = "\"INGENIOUS.\"  (THE NEW YORK TIMES)";
quote = new Array(q1,q2,q3,q4);

count = 0;
quoteCount = 4;

function rotate()
{
	if (count == quoteCount)
	{
		count = 0;
	}
	document.all.quote.innerHTML = quote[count];
	count++;
	setTimeout("rotate();", 8000);
}

