$(document).ready(function() {

  $('#europe').hide();
  $('#international').hide();

  $('a#showEurope').click(function() {
    $('#europe').show('slow');
    $('#international').hide('fast');
    return false;
  });

  $('a#hideEurope').click(function() {
    $('#europe').hide('fast');
    return false;
  });

  $('a#showInternational').click(function() {
    $('#international').show('slow');
    $('#europe').hide('fast');
    return false;
  });

  $('a#hideInternational').click(function() {
    $('#international').hide('fast');
    return false;
  });

});