$(document).ready(function(){

    $('#terms').hide();
    $("a#terms-link").click(function () {
      $("#terms").slideToggle("slow");
    });

$('#subnav a').tooltip({ 
    showURL: false 
});

$('.tags a').tooltip({ 
    showURL: true 
});

$('a.stats-link').tooltip({ 
    showURL: true 
});


});
