function setSideHeight() {
	var contentObj = document.getElementById('content');
	var contentHeight = contentObj.offsetHeight;
	
	var topObj = document.getElementById('top_left');
	var topHeight = topObj.offsetHeight;	
	
	var windowHeight = window.innerHeight;
	
	if (windowHeight > contentHeight) {
		var baseHeight = windowHeight;
	}
	else {
		var baseHeight = contentHeight;	
	}
	
	var bottomHeight = baseHeight - topHeight;
	
	var bottomrightObj= document.getElementById('bottom_right');
	var bottomleftObj= document.getElementById('bottom_left');

	bottomrightObj.style.height = bottomHeight + 'px';
	bottomleftObj.style.height = bottomHeight + 'px';
	
}

function checkServices() {
	var idPackageObj = document.getElementById('idpackage');
	var websiteObj = document.getElementById('website');
	var startupObj = document.getElementById('startup');
	
	if (idPackageObj.checked == true || websiteObj.checked == true) {
		startupObj.disabled = true;
	}
	else if (startupObj.checked == true) {
		websiteObj.disabled = true;
		idPackageObj.disabled = true;
	}
	else {
		websiteObj.disabled = false;
		idPackageObj.disabled = false;
		startupObj.disabled = false;
	}
}

function change_pa_info(person) {
	var imgObj = document.getElementById('pa_picture');
	var textObj = document.getElementById('pa_text');
	
	textObj.style.padding = 10 + 'px';
	
	
	if (person == 'heidi') {
		imgObj.src = 'images/public_affairs/heidi_otway.gif';
		var newHTML = '<span style="font-weight:bold">Heidi Otway, APR, Director of Public Relations</span><br />Heidi Otway gets the word out, tapping into both traditional and social media networks to amplify exposure and engagement. In her five years here, Heidi has directed numerous regional and statewide earned media efforts, promoting such causes as affordable housing, children&rsquo;s health insurance and college financial aid. Previously, Heidi spent nearly a decade managing broadcast news operations from Miami to Tallahassee as an assistant news director, managing editor and executive producer &ndash;&ndash; essentially acting as the &ldquo;gatekeeper&rdquo; in the newsroom. Today, her media relationships, and her placements, stretch across the southeast. ';
	}
	else if (person == 'lisa') {
		imgObj.src = 'images/public_affairs/lisa_hall.gif';
		var newHTML = '<span style="font-weight:bold">Lisa Hall, APR, CPRC, Director of Public Affairs</span><br />Lisa Hall has managed, produced and executed news for more than 17 years, leading newsrooms across the southeast and managing many statewide and regional issue campaigns. Over her past nine years here, Lisa&rsquo;s victories include saving Florida&rsquo;s State Library, helping secure the largest land preservation purchase in Florida history, and helping win approval and acclaim for a sustainable new city being built in Southwest Florida.  Lisa is accredited by the Universal Accreditation Board for public relations and is a Certified Public Relations Counselor.';
	}
	else if (person == 'meg') {
		imgObj.src = 'images/public_affairs/meg_shannon.gif';
		var newHTML = '<span style="font-weight:bold">Meg Shannon, Planner</span><br />Meg Shannon is an expert at bringing public and private forces together. As a communications director during the Jeb Bush administration for the Florida Department of Business and Professional Regulation, Meg worked closely with industries and trade groups to unify messages, manage media attention, and improve impact. She is still tapping into those networks and others to plan and execute communication strategies for such programs as Click It or Ticket, NeighborWorks America, College Goal Sunday, and the Florida Children&rsquo;s Campaign.';
	}
	else if (person == 'john') {
		imgObj.src = 'images/public_affairs/john_fleming.gif';
		var newHTML = '<span style="font-weight:bold">John Fleming, APR, Vice President, Public Affairs</span><br />John Fleming distills the essence of complicated public affairs challenges into clear and emotional campaigns. A former journalist, John has spent six years here advising such clients as the Florida Retail Federation, the American Heart Association, American Cancer Society, the American Lung Association, the Florida Outdoor Advertising Association, the Florida Council of 100, and Florida TaxWatch. A good example of John&rsquo;s approach is his work with wine and spirits distributors and law enforcement to create a coalition united against underage drinking &ndash; a group that illustrates one reason for Florida&rsquo;s alcohol beverage licensing system.';
	}
	else if (person == 'april') {
		imgObj.src = 'images/public_affairs/april_salter.gif';
		var newHTML = '<span style="font-weight:bold">April Salter Herrle, APR, CPRC, President</span><br />A former communications director for Florida Gov. Lawton Chiles, April develops strategies that mold public opinion around crisis situations, arcane political issues and unsung commercial products. Her campaigns have erected an Internet sales-tax counter near the Capitol, staged a funeral for a targeted health program and put Santa Claus on the board of the Florida Retail Federation. A frequent speaker to business and tourism groups, April advises corporate leaders, top Florida officials and leaders of numerous social causes. She has appeared on countless national broadcasts, including the Today show, Good Morning America and National Public Radio.';
	}
	
	textObj.innerHTML = newHTML;
}

function reset_info() {
	var imgObj = document.getElementById('pa_picture');
	var textObj = document.getElementById('pa_text');
	
	imgObj.src = 'images/public_affairs/teamphoto.gif';
	textObj.style.padding = 0 + 'px';
	textObj.innerHTML = '';
}