$j(document).ready(function() {
  // Footer tabs
  $j('.slide .content').hide();
  $j('.slide .map').hide();
  $j('.slide').click(function() {
    $j('#homepage').find('.visible').fadeOut('fast').removeClass('visible');
    if ($j(this).find('.content').is('.visible')) {
      $j(this).find('.content').animate({ height: "toggle" }, 500).toggleClass('visible');
      $j(this).find('.map').toggle('slow');
    } else {
      $j('#footer').find('.visible').find('.map').toggle('slow');
      $j('#footer').find('.visible').animate({ height: "toggle" }, 500).removeClass('visible');
      $j(this).find('.content').animate({ height: "toggle" }, 500).toggleClass('visible');
      $j(this).find('.map').toggle('slow');
    }
  });
  
  // Popups
  $j('.introduction a').click(function() {
    // Hide any slides or popups which are already open
    $j('#footer').find('.visible').find('.map').toggle('slow');
    $j('#footer').find('.visible').animate({ height: "toggle" }, 500).removeClass('visible');
    $j('#group-brands').find('.visible').removeClass('visible').fadeOut(750);
    // Open the popup
    var popupId = $j(this).attr('href');
    $j('#' + popupId).addClass('visible').fadeIn(1000);
    return false;
  });
  $j('.popup .close').click(function() {
    $j(this).parents('.popup').fadeOut(750);
  });
  
});
