$(document).ready(function() {
	
	add_first_text();
	
	$("#struct").click(function() {
		add_first_text();
	});
	
	$("#chem").click(function() {
		$('#btn_desc').html('<h2>Chemical</h2><p>Whole System Health Scan (WSHS) Symptom Survey Analysis, Custom Tailored Nutritional and Weight Management Program, Whole Food Supplements (Standard Process), Detoxification Protocols and Homeopathy.</p>')
	});
	
	$("#emo").click(function() {
		$('#btn_desc').html('<h2>Emotional</h2><p>Neuro Emotional Technique NET seeks and normalizes unresolved physical or behavioral patterns locked in the body by making a physiological correction. A MIND-BODY approach.</p>')
	});
	
	function add_first_text() {
		$('#btn_desc').html('<h2>Structural Chiropractic</h2><p>Activator Technique, Total Body Modification, Sacral Occipital Technique, Trigger Point Therapy, Accu-Reflex Technique Rehabilitation Exercise.</p>')
	}
});

