<!--
	today=new Date();
	jran=today.getTime();
	var number = 5;
	var random_number="";
	var text_color="";
	ia=9301;
	ic=49297;
	im=233280;
	jran = (jran*ia+ic) % im;
	random_number = Math.ceil( (jran/(im*1.0)) *number);
	// Loads the appropriate image based on random number.
	if (random_number==1) {
		image = "images/quotes/quote_1.gif";
	}
	if (random_number==2) {
		image = "images/quotes/quote_2.gif";
	}
	if (random_number==3) {
		image = "images/quotes/quote_3.gif";
	}
	if (random_number==4) {
		image = "images/quotes/quote_4.gif";
	}
	if (random_number==5) {
		image = "images/quotes/quote_5.gif";
	}
//-->