$(document).ready(function(){

  $("#fact01_text,#fact02_text,#fact03_text,#fact04_text,#fact05_text,#fact06_text,#fact07_text,#fact08_text,#fact09_text,#fact10_text,#fact11_text,#fact12_text,#fact13_text,#fact14_text,#fact15_text,#fact16_text,#tolling1_text,#tolling2_text,#tolling3_text,#tolling4_text,#tolling5_text,#tolling6_text").hide();

  $("a#fact01").toggle(function(){
   $("#fact01_text").show('fast');
  },function(){
   $("#fact01_text").hide('slow');
  });
  
  $("a#fact02").toggle(function(){
   $("#fact02_text").show('fast');
  },function(){
   $("#fact02_text").hide('slow');
  });
  
  $("a#fact03").toggle(function(){
   $("#fact03_text").show('fast');
  },function(){
   $("#fact03_text").hide('slow');
  });
  
  $("a#fact04").toggle(function(){
   $("#fact04_text").show('fast');
  },function(){
   $("#fact04_text").hide('slow');
  });
  
  $("a#fact05").toggle(function(){
   $("#fact05_text").show('fast');
  },function(){
   $("#fact05_text").hide('slow');
  });
  
  $("a#fact06").toggle(function(){
   $("#fact06_text").show('fast');
  },function(){
   $("#fact06_text").hide('slow');
  });
  
  $("a#fact07").toggle(function(){
   $("#fact07_text").show('fast');
  },function(){
   $("#fact07_text").hide('slow');
  });
  
  $("a#fact08").toggle(function(){
   $("#fact08_text").show('fast');
  },function(){
   $("#fact08_text").hide('slow');
  });
  
  $("a#fact09").toggle(function(){
   $("#fact09_text").show('fast');
  },function(){
   $("#fact09_text").hide('slow');
  });
  
  $("a#fact10").toggle(function(){
   $("#fact10_text").show('fast');
  },function(){
   $("#fact10_text").hide('slow');
  });
  
  $("a#fact11").toggle(function(){
   $("#fact11_text").show('fast');
  },function(){
   $("#fact11_text").hide('slow');
  });
  
  $("a#fact12").toggle(function(){
   $("#fact12_text").show('fast');
  },function(){
   $("#fact12_text").hide('slow');
  });
  
  $("a#fact13").toggle(function(){
   $("#fact13_text").show('fast');
  },function(){
   $("#fact13_text").hide('slow');
  });
  
  $("a#fact14").toggle(function(){
   $("#fact14_text").show('fast');
  },function(){
   $("#fact14_text").hide('slow');
  });
  
  $("a#fact15").toggle(function(){
   $("#fact15_text").show('fast');
  },function(){
   $("#fact15_text").hide('slow');
  });
  
  $("a#fact16").toggle(function(){
   $("#fact16_text").show('fast');
  },function(){
   $("#fact16_text").hide('slow');
  });
  
  $("a#tolling1").toggle(function(){
   $("#tolling1_text").show('fast');
  },function(){
   $("#tolling1_text").hide('slow');
  });
  
  $("a#tolling2").toggle(function(){
   $("#tolling2_text").show('fast');
  },function(){
   $("#tolling2_text").hide('slow');
  });
  
  $("a#tolling3").toggle(function(){
   $("#tolling3_text").show('fast');
  },function(){
   $("#tolling3_text").hide('slow');
  });
  
  $("a#tolling4").toggle(function(){
   $("#tolling4_text").show('fast');
  },function(){
   $("#tolling4_text").hide('slow');
  });
  
  $("a#tolling5").toggle(function(){
   $("#tolling5_text").show('fast');
  },function(){
   $("#tolling5_text").hide('slow');
  });
  
  $("a#tolling6").toggle(function(){
   $("#tolling6_text").show('fast');
  },function(){
   $("#tolling6_text").hide('slow');
  });
  
});

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