$(document).ready(function() {
   $('#health_indicators').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });
 });

$(document).ready(function() {
   $('#jim_indicators').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });
 });
 
$(document).ready(function() {
    $('#lmodel').find('dd').hide().end().find('dt').click(function() {
      $(this).next().slideToggle();
    });
 });

$(document).ready(function() {
    $('#principles').find('dd').hide().end().find('dt').click(function() {
      $(this).next().slideToggle();
    });
 });
 
$(document).ready(function() {
     $('#commitments').find('dd').hide().end().find('dt').click(function() {
       $(this).next().slideToggle();
     });
 });
 
$(document).ready(function() {
      $('#objectives').find('dd').hide().end().find('dt').click(function() {
        $(this).next().slideToggle();
      });
 });
 
$(document).ready(function() {
	 $('#show_all_health').click(function(){
	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
	 ((this.innerHTML=="Hide All") ? $('#health_indicators').find('dd').show() : $('#health_indicators').find('dd').hide());
	 
	return false;
 });
 });	 
 
 $(document).ready(function() {
	 $('#show_all').click(function(){
	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
	 ((this.innerHTML=="Hide All") ? $('#jim_indicators').find('dd').show() : $('#jim_indicators').find('dd').hide());
	 
	return false;
 });
 });

  
 
 $(document).ready(function() {
 	 $('#show_all_lmodel').click(function(){
 	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
 	 ((this.innerHTML=="Hide All") ? $('#lmodel').find('dd').show() : $('#lmodel').find('dd').hide());
 	 
 	return false;
  });
 });	  
 
 $(document).ready(function() {
  	 $('#show_all_principles').click(function(){
  	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
  	 ((this.innerHTML=="Hide All") ? $('#principles').find('dd').show() : $('#principles').find('dd').hide());
  	 
  	return false;
   });
 });	 
 
 $(document).ready(function() {
   	 $('#show_all_commitments').click(function(){
   	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
   	 ((this.innerHTML=="Hide All") ? $('#commitments').find('dd').show() : $('#commitments').find('dd').hide());
   	 
   	return false;
    });
 });
 
 $(document).ready(function() {
    	 $('#show_all_objectives').click(function(){
    	 this.innerHTML=((this.innerHTML=="Show All") ? "Hide All" : "Show All");
    	 ((this.innerHTML=="Hide All") ? $('#objectives').find('dd').show() : $('#objectives').find('dd').hide());
    	 
    	return false;
     });
 });