$(document).ready(function(){
  window.tabShowing='#latest-twinges-panel';
  $('#latest-performertweets-panel').hide();
  $('#tweet-tabs .tabs a').click(function(){
    var u=$(this).attr("href");
    
    u=u.substr(u.indexOf("#"));        
    if(u!=window.tabShowing){
      $(window.tabShowing).hide();    
      $(u).show();
      $('#tweet-tabs .tabs a').removeClass('current');
      $(this).addClass('current');
      window.tabShowing=u;
    }      
    return false;
  });
});




