var timer = null;

$(function()
{
  $("#countries span").bind("click", function()
  {
    document.location = "http://www." + this.title.replace(/\|/g, "\.");
  });

  $("#countrylinks").hover(function()
  {
    if(timer)
    {
      clearTimeout(timer);
      timer = null;
    }

    $("#countries").show();
  },
  function()
  {
    timer = setTimeout(function()
    {
      $("#countries").hide();
    },
    2000);
  });

  $("#countries").bind("mouseenter", function()
  {
    if(timer)
    {
      clearTimeout(timer);
      timer = null;
    }
  });

  $("#countries").bind("mouseleave", function()
  {
    timer = setTimeout(function()
    {
      $("#countries").hide();
    },
    2000);
  });
});