//Array function

function makeArray(len) {
	for (var i = 0; i<len; i++) this[i] = null;
this.length = len;
}

//Array of quotes

var quote = new makeArray(3);

quote[0] = '<p class=\"quotesmall\">"Through the power of the words He hath uttered the whole of the human race can be illumined with the light of unity, and the remembrance of His name is able to set on fire the hearts of all men, and burn away the veils that intervene between them and His glory."</p><div align=\"right\"><p align=\"right\" class=\"text\"><dt>- <strong><font color=#006599>Baha\'u\'llah</font></strong></div>';

quote[1] = '<p class=\"quotesmall\">"The Sacred Literature of the Baha\'i Faith conveys enlightenment.  It inspires life.  It frees the mind.  It disciplines the heart.  For believers, the Word is not a philosophy to be learned, but the sustenance of being throughout the span of mortal existence."</p><div align=\"right\"><p align=\"right\"><p align=\"right\" class=\"text\"><dt>- <strong><font color=#006599>Horace Holley</font></strong></div>';

quote[2] = '<p class=\"quotesmall\">"The writing, translation and promulgation of Baha\'i books were one of the Guardian\'s major interests, one he never tired of and one he actively supported ..."</p><div align=\"right\"><p align=\"right\" class=\"text\"><dt>- <strong><font color=#006599>Ruhiyyih Khanum</font></strong></div>';

//random number generator

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xfffffff
document.write(quote[rand(quote.length)])
