	// Set Column To Equal Heights
	function setHeight() {
		// Reset Heights If They Exist
		$('#colLeft').height("auto");
		$('#colRight').height("auto");
		// Grab Current Height
		var highestCol = Math.max($('#colLeft').height(),$('#colRight').height());
		$('#colLeft').height(highestCol);
		$('#colRight').height(highestCol);
	}


	$(document).ready(function() {
		// Navigation Flyout
		$("#header .navTabs div").hover( function() {
			var clip = $(this).attr("id");
			if($("a#btn-"+clip).attr("class") != "selected") $("#header .navTabs div#"+clip).mouseover(function(){$("a#btn-"+clip).attr("class","selected");}).mouseout(function(){$("a#btn-"+clip).attr("class","");});
			$("div#"+clip+" .expanded").show(); },function() { $("div#"+$(this).attr("id")+" .expanded").hide();
		});

		// Experienced Leadership Accordion
		$('.full-bio').hide();
		$('.full-bio-link').click(function() {
			$(this).parent().next('.full-bio').toggle();
			setHeight();
			$(this).toggleClass('open');
			if($(this).hasClass('open')) { $(this).html('[ Hide Full Bio ]');
			} else { $(this).html('[ Read Full Bio ]'); }
			return false;
		}).next().hide();

		// Case Study Accordion
		$('.full-case-study').hide();
		$('.full-case-study-link').click(function() {
			$(this).parent().next('.full-case-study').toggle();
			setHeight();
			$(this).toggleClass('open');
			if($(this).hasClass('open')) { $(this).html('[ Hide This Case Study ]');
			} else { $(this).html('[ Read More About This Case Study ]'); }
			return false;
		}).next().hide();

		// Run Initial Page Set Height
		setHeight();

		// Initiate LightBox
		$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});
