Event.addBehavior({

  'body': function() {
	$('table_celeb').hide();
  },
  
  '#link_geral:click': function() {
	$('table_celeb').hide();
	$('table_geral').show();

	$('tab_geral_on').show();
	$('tab_geral_off').hide();
	$('tab_celeb_on').hide();
	$('tab_celeb_off').show();	
  },

  '#link_celeb:click': function() {
	$('table_geral').hide();
	$('table_celeb').show();

	$('tab_geral_on').hide();
	$('tab_geral_off').show();
	$('tab_celeb_on').show();
	$('tab_celeb_off').hide();	
  }

});