// JavaScript Document

// Footer Feed
function footerFeed() {
	var footerContent = new Array();
	footerContent[0] = new Array("dyklogo","Did You Know","The numbering of the Psalms is slightly different in the Hebrew Tanakh and the Greek Septuagint.");
	footerContent[1] = new Array("dyklogo","Did You Know","Dr. Heard's Religion 101 classes typically enroll 35&ndash;50 students.");
	var footerChoice = Math.floor(Math.random() * footerContent.length);
	var footerCode = "<div id=\"";
	footerCode += footerContent[footerChoice][0];
	footerCode += "\"><h2 class=\"hiddenimage\"><span>";
	footerCode += footerContent[footerChoice][1];
	footerCode += "</span></h2></div><div id=\"quickfactstext\"><p>";
	footerCode += footerContent[footerChoice][2];
	footerCode += "</p></div>";
	return footerCode;
}