$(document).ready(function(){
  $('#tabs ul li a').click(function(){ //When any link is clicked
    var currentTab = $(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
    $('#tab_fastfacts').hide(); // Hide all divs
    $('#tab_news').hide(); // Hide all divs
    $('#tab_video').hide(); // Hide all divs
    $(currentTab).show(); // Show div with id equal to variable currentTab
    return false;
  });
});

