$().ready(function() {

	$('.block-bio h3').each(function() {
		
	  var tis = $(this),  state = false, answer = tis.next('div.content').hide().css('height','auto').slideUp()
						   
		tis.click(function() {
			state =  !state; 
			answer.slideToggle(state);
			tis.toggleClass('active',state);
		});
	});
	
	$('.location').change(function() {
		$('.inside, .outside').toggle();																																																
	}),
	
	$('#academy').change(function() {
		if ($('#academy :selected').val() == "Other") {
			$('.other, .other1').toggle();
		}
	}),
	
	$('#referral').change(function() {
		if ($('#referral :selected').val() == "Other") {
			$('.other, .other1').toggle();
		}
	});	
	

});
