var community = new Array();
var ezone = new Array();
var firstFocus = new Array();
var investors = new Array();
var siteSel = new Array();

function secret(number, text) {
	this.number = number;	
	this.text = text;	
}


community[1] = new secret(35, "Florida State University is breaking new ground in the areas of aero-propulsion and materials sciences, and Tallahassee serves as home to HondaJet SE and Piper SE.  ");

community[2] = new secret(63, "Eight hundred small businesses have created 12,000 IT and engineering jobs, which are fed by four technology academies operating in the three-county region.  ");

community[3] = new secret(9, "Two major universities, a vibrant community college and versatile technical centers are adapting and creating programs to meet the needs of area businesses. ");

community[4] = new secret(51, "Our region is working together to encourage cooperation between area businesses and community leaders to ensure a strong future.");

community[5] = new secret(45, "Tallahassee is one of two cities in the state of Florida to receive the Green City Local Government Standard Awards by the Florida Green Building Coalition. ");



ezone[1] = new secret(17, "We provide assistance with relocation efforts, grant applications, training programs and incentive packages for companies considering a move to this region.");

ezone[2] = new secret(59, "Almost 20 square miles in size, the Tallahassee/Leon County Enterprise Zone offers financial incentives to businesses and residents. ");



firstFocus[1] = new secret(72, "World-class researchers and engineers inhabit 500,000 square feet of research-and-development space and service the region’s targeted industries. ");

firstFocus[2] = new secret(4, "Defense and National Security is large and growing sector which accounts for more than 32,000 private and non-military government employees across northwest Florida.");

firstFocus[3] = new secret(43, "Committed to protecting and nurturing local jobs and businesses, the EDC fosters job creation and the generation of new capital investment.");

firstFocus[4] = new secret(12, "Tallahassee is home to C.H. Robinson Worldwide - listed on FORTUNE magazine's list of America's Most Admired Companies. ");



investors[1] = new secret(3, "Investments in cutting-edge workforce training and secure, electronic patient data collection is resulting in low-cost patient care, creating significant market opportunities for the region.");

investors[2] = new secret(47, "Through its partners such as WORKFORCE plus, the EDC is committed to encouraging regional economic development by cultivating a well-trained workforce. ");

investors[3] = new secret(31, "More than 100 companies directly invest in the economic development of this region – a partnership that fosters accountability and secures our future. ");

investors[4] = new secret(28, "Tallahassee Capital Health Plan is the top-ranked health plan in Florida ");



siteSel[1] = new secret(1, "This region’s success is the result of a balanced approach to economic development that includes emphasis in three areas -- nurturing existing industry, developing entrepreneurial and new business opportunities, and attracting like-minded companies to the area. ");

siteSel[2] = new secret(21, "Premier medical research and educational institutes, with international reach, reputation and leadership, distinguish the region as the world’s capital for human-performance improvement. ");

siteSel[3] = new secret(11, "Regional business and industrial parks have shovel-ready capacity with easy access to I-10 as well as the Tallahassee Regional Airport.");

siteSel[4] = new secret(34, "Our region continues to thrive with a growing and diversified business community that offers a rare balance of personal and professional opportunity. ");

siteSel[5] = new secret(24, "There is easy access to I-10, a regional airport and vibrant markets, rail, ports and international commerce centers in three states -- just hours away.");

siteSel[6] = new secret(37, "Innovation Park is home to Danfoss Turbocor Compressors, Tallahassee's newest corporate headquarters, R&D and high-tech manufacturing facility.");


function rand(m, n) {
	var r = Math.floor( Math.random() * ((n - m) + 1) ) + m;
	return r;
}


function getSecret(element, category) {
	e = document.getElementById(element);

	if (category == 'community') {
		r = rand(1, community.length - 1);
		n = community[r].number;
		t = community[r].text;
	} else if (category == 'ezone') {
		r = rand(1, ezone.length - 1);
		n = ezone[r].number;
		t = ezone[r].text;
	} else if (category == 'firstFocus') {
		r = rand(1, firstFocus.length - 1);
		n = firstFocus[r].number;
		t = firstFocus[r].text;
	} else if (category == 'investors') {
		r = rand(1, investors.length - 1);
		n = investors[r].number;
		t = investors[r].text;
	} else if (category == 'siteSel') {
		r = rand(1, siteSel.length - 1);
		n = siteSel[r].number;
		t = siteSel[r].text;
	} else {
		n = 'ERROR';
		t = 'ONLY THE FOLLOWING CATEGORIES ARE VALID: community, ezone, firstFocus, investors, siteSel';
	}
	
	e.innerHTML = "<span>Our Business Secret #" + n + ":</span> " + t + "";
}
