counter = 0;
facts = new Array();

facts[counter++] = "<p><a id='callout-jaxfact-1' href='/visitor/do_you_know_jax/'>Jax is BIG - lots of land, lots of people. Biggest city population in FL (>800,000) and largest city (841sq mi) in the nation.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-2' href='/visitor/do_you_know_jax/'>Jax was GREEN before it was cool to be green. It's #1 in nation for parklands, with 57,373 acres of parks.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-3' href='/visitor/do_you_know_jax/'>If you like golf, you'll love Jax. With more than 1,220 holes of golf, Jacksonville is a great place for a golf getaway.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-4' href='/visitor/do_you_know_jax/'>Where the Jaguars roam. Mostly in the 73,000-seat stadium, which  played host to Super Bowl XXXIX.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-5' href='/visitor/do_you_know_jax/'>Hollywood of the South. Oliver Hardy of Lauren & Hardy fame got his start in Jacksonville as a ticket-taker in one of the city's 30 movie studios of the early 1900s.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-6' href='/visitor/do_you_know_jax/'>Where 'Free Bird' was born. Forget Sweet Home Alabama. The Southern rock band Lynyrd Skynyrd is one of many bands to get their start in Jacksonville.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-7' href='/visitor/do_you_know_jax/'>Ranked among the 'Hottest Cities in America' for doing business. Top ten for six years running and #1 city three times.</a></p>";

facts[counter++] = "<p><a id='callout-jaxfact-8' href='/visitor/do_you_know_jax/'>Four military bases employ about 40,000 workers, making them the largest employer in the Jacksonville metro. And, Jax is the original home of the U.S. Navy's Blue Angels.</a></p>";

function random_fact() {
	random_num = Math.floor(Math.random() * counter);
	
	document.write(facts[random_num]);
}