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(28)
	quote[0]  = "The 501st Legion began in 1997 as a simple fan website called Detention Block 2551."
	quote[1]  = "The 501st Legion, also known as \"Vader's Fist,\" was first officially recognized in LFL material by Star Wars author Timothy Zahn in the 2004 novel \"Survivor's Quest.\""
	quote[2]  = "Among the 501st's most notable events are annual appearances at Dragon*Con, San Diego Comic-Con, and Disney's Star Wars Weekends."
	quote[3]  = "All 501st members operate on a volunteer basis, donating countless hours of their time to charity fundraisers throughout the world."
	quote[4]  = "Dragon*Con 2004 played host to the 501st Legion's First Annual Droid Hunt, a thrilling role-playing competition challenging convention attendees to protect \"Droid Badges\" and evade capture by the Legion's finest troops."
	quote[5]  = "The 501st Legion's extensive list of Honorary Members includes the likes of Mark Hamill, James Earl Jones, John Williams, and George Lucas himself."
	quote[6]  = "In 2002, the 501st Legion appeared on stage during a No Doubt concert as the band played their own striking rendition of the \"Imperial March.\""
	quote[7]  = "Among the biggest collectors of 501st t-shirts are Star Wars actors Jeremy Bulloch (Boba Fett) and Peter Mayhew (Chewbacca)."
	quote[8]  = "Every 501st member is assigned a unique \"TK\" number in homage to the hapless TK-421 whom Luke and Han dispatched aboard the Death Star."
	quote[9]  = "Although Stormtroopers make up the majority of 501st members, other acceptable costumes types include Tusken Raiders, Bounty Hunters and Sith Lords."
	quote[10] = "The 501st Legion's worldwide ranks are organized into distinct units called Garrisons, Squads, Outposts and Detachments."
	quote[11] = "In 2003, the 501st performed on stage with musical artist \"Weird Al\" Yankovic during an encore performance of his song \"The Saga Begins.\""
	quote[12] = "In 2004, the 501st Legion hit the gridiron to rally support for the Oakland Raiders during a NFL game against the Tampa Bay Buccaneers."
	quote[13] = "A documentary film called \"Heart of an Empire\" is currently in production chronicling the life and times of the Fighting 501st Legion."
	quote[14] = "The members of the 501st have appeared in many Star Wars fan films including such award-winning productions as \"The Jedi Hunter,\" \"Recruitment,\" \"Silent But Deadly II,\" and \"Return of Pink Five.\""
	quote[15] = "The 501st's ongoing charity work includes such notable beneficiaries as the Ronald McDonald House, the Special Olympics, Toys for Tots, and the Make-A-Wish Foundation."
	quote[16] = "The 501st Legion takes great pride in making dozens of hospital visits each year to brighten the lives of sick children."
	quote[17] = "In 2005, LucasArts paid tribute to the 501st Legion by making them the central characters of the video game Star Wars: Battlefront II."
	quote[18] = "The 501st Legion boasts a variety of highly-detailed costumes, some of which have been used as the \"real-life\" references for official Lucasfilm illustrations."
	quote[19] = "In October 2005, starwars.com added the 501st Legion to its growing databank of officially-recognized characters with behind-the-scenes details recognizing the original fan organization."
	quote[20] = "In November 2005, costumed 501st members starred in a series of commercials promoting a special Star Wars-themed episode of Donald Trump's popular reality show \"The Apprentice.\""
	quote[21] = "In June 2005, George Lucas was presented the American Film Institute's highest honor—the AFI Lifetime Achievement Award. To set the stage for the gala event, members of the 501st Legion performed an opening song and dance routine with William Shatner (Captain Kirk)."
	quote[22] = "Star Wars Celebration 3 was one of the largest gatherings of 501st members to date with nearly 500 members appearing in a single group photo and over $10,000 raised for charity during the 4-day event."
	quote[23] = "One Legion member made good use of his costume by delivering his personal resume to an prospective employer wearing full Sandtrooper gear. He left such an impression that he was eventually awarded the job."
	quote[24] = "November 26, 2005 was officially declared \"Golden Gate Garrison Day\" by the mayor of Santa Cruz, California, in honor of the significant charitible contributions made by local 501st members."
	quote[25] = "In 2006, Toy manufacturer Hasbro immortalized the 501st in plastic by producing an exclusive 501st Legion Stormtrooper action figure whose packaging was designed around the group's popular trading card series."
	quote[26] = "As early as 1998, the 501st Legion's ranks included several female members dispelling the notion that a Star Wars costuming club would have a predominately male base."
	quote[27] = "The current record for continuous time spent in full Stormtrooper armor is held by Legion member TD-9292 at 75.5 hours."

	
	
	
	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>';
}