function print501stFact()
{
	// please keep these lines on when you copy the source
	// made by: Nicolas - http://www.javascript-page.com
	
	var core = 0
	var currentdate = 0
	
	function StringArray (n) {
	  this.length = n;
	  for (var i =1; i <= n; i++) {
	    this[i] = ' '
	
	  }
	}
	
	quote = new StringArray(11)
	quote[0]  = "The legion forum went live in August 2005 as a result of the Legion's vote to move away from Yahoogroups."
	quote[1]  = "At the bottom of the main page there is a color-key which identifies moderators, council members and other special roles."
	quote[2]  = "COs, XOs, Outpost Leaders and their delegated staff  can post about large-scale events to the 501st Events forum. Make sure your garrison is represented!"
	quote[3]  = "The February 2006 LCO elections had a Legion record of 920 voters. Let's beat that in 2007!"
	quote[4]  = "The \"Off Topic\" section of the forum is our highest traffic area. Don't believe us? Just take a look at the Imperial Pub!!!"
	quote[5]  = "People often confuse moderators and the forum team. The forum team makes things work, but doesn't monitor/moderate traffic on the forums."
	quote[6]  = "Make sure to check out the links in the left hand navigation. You can see what polls are running, check most recent posts, and join in the Legion chat room."
	quote[7]  = "As of July 2006 we have over 2100 registered users... that's more than 2/3s of the Legion!!"
	quote[8]  = "Have you checked out Static Burst, the 501st Legion newsletter? If not, head over to the news forum - it's a sticky link!"
	quote[9]  = "How well is your garrison represented on the Legion forum? Check out the \"current registration counts by garrison\" sticky under \"Off Topic\" to find out!"
	quote[10] = "Take a look at the \"Info on 501st Costumes\" thread under costuming for links to great resources for all of the 501st costumes."

	
	var ran = 60/quote.length
	
	currentdate = new Date()
	core = currentdate.getSeconds()
	adcore = Math.floor(core/ran)
	core = adcore
	
	var thequote = quote[core]

	// If JavaScript is enabled - replace the warning with a FastFact
	var javascriptDivDOM = findDOM("fastFact", false);
	javascriptDivDOM.innerHTML= '<span class="factfact">' + thequote + '</span>';
}
