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]  = "This forum went live in August 2005 as a result of the Legion's vote to move away from Yahoo! Groups."
	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]  = "Don't let Legion history forget about you! Post your event summaries in our \"Mission Reports\" section."
	quote[3]  = "The February 2009 LCO elections had a Legion record of more than 2411 voters. That's a 162% increase!"
	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 posts 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 February 2009 we had over 4826 registered forum users... that's more than the number of active members!"
	quote[8]  = "Have you checked out The 501stCast, the official bi-weekly Legion podcast? Give it a listen at 501st.com/podcast!"
	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>';
}

