$(document).ready(function(){

  $("#corporate_text,#walking_text,#cronyism_text,#waste_text,#misc_text,#bacon1_text,#bacon2_text,#bacon3_text,#bacon4_text,#bacon5_text,#bacon6_text,#budget1_text,#budget2_text,#budget3_text").hide();

  $("a#corporate_title").toggle(function(){
   $("#corporate_text").show('fast');
  },function(){
   $("#corporate_text").hide('slow');
  });
  
  $("a#walking_title").toggle(function(){
   $("#walking_text").show('fast');
  },function(){
   $("#walking_text").hide('slow');
  });
  
  $("a#cronyism_title").toggle(function(){
   $("#cronyism_text").show('fast');
  },function(){
   $("#cronyism_text").hide('slow');
  });
  
  $("a#waste_title").toggle(function(){
   $("#waste_text").show('fast');
  },function(){
   $("#waste_text").hide('slow');
  });
  
  $("a#misc_title").toggle(function(){
   $("#misc_text").show('fast');
  },function(){
   $("#misc_text").hide('slow');
  });
  
  $("a#bacon1_title").toggle(function(){
   $("#bacon1_text").show('fast');
  },function(){
   $("#bacon1_text").hide('slow');
  });
  
  $("a#bacon2_title").toggle(function(){
   $("#bacon2_text").show('fast');
  },function(){
   $("#bacon2_text").hide('slow');
  });

  $("a#bacon3_title").toggle(function(){
   $("#bacon3_text").show('fast');
  },function(){
   $("#bacon3_text").hide('slow');
  });

  $("a#bacon4_title").toggle(function(){
   $("#bacon4_text").show('fast');
  },function(){
   $("#bacon4_text").hide('slow');
  });
  
  $("a#bacon5_title").toggle(function(){
   $("#bacon5_text").show('fast');
  },function(){
   $("#bacon5_text").hide('slow');
  });
  
  $("a#bacon6_title").toggle(function(){
   $("#bacon6_text").show('fast');
  },function(){
   $("#bacon6_text").hide('slow');
  });
  
  $("a#budget1_title").toggle(function(){
   $("#budget1_text").show('fast');
  },function(){
   $("#budget1_text").hide('slow');
  });
  
  $("a#budget2_title").toggle(function(){
   $("#budget2_text").show('fast');
  },function(){
   $("#budget2_text").hide('slow');
  });
  
  $("a#budget3_title").toggle(function(){
   $("#budget3_text").show('fast');
  },function(){
   $("#budget3_text").hide('slow');
  });
  
});

hide('slow');
show('fast');
