$(document).ready(function() {
  $('a#top20').click(function() {
    $('#top-20').show();
    $('#t-list').hide();
    $('#t-cloud').hide();
    return false;
  });
  $('a#tlist').click(function() {
    $('#t-list').show();
    $('#top-20').hide();
    $('#t-cloud').hide();
    return false;
  });
  $('a#tcloud').click(function() {
    $('#t-cloud').show();
    $('#top-20').hide();
    $('#t-list').hide();
    return false;
  });
});