// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function() {
 // Oculta todo  
 jQuery('#stats').hide();
  
 // :D
  jQuery('a#showstats').click(function() {
    jQuery('#stats').slideToggle(500);
    return false;
  });  
});