$(document).ready(function(){


  // popup - competition 
  $('.comp').colorbox({href:"/competition", width: "800", height: "650", initialWidth: "800", initialHeight: "650", transition: 'none'}, function(){
    $('body').addClass('pop_comp');
    $('body').removeClass('pop_map');
  });
  
  // popup - map
  $('.map').colorbox({href:"/map", transition: 'none'}, function(){
  
    // hide allinfo  ballons
    $('.whatsonpopupadres').hide();
    $('body').addClass('pop_map');
    $('body').removeClass('pop_comp');
  
    // setup the list hovers
    $('#whatsonpopuplist li').mouseover(function(){
      $(this).find('span').show();
    }).mouseout(function(){
       $(this).find('span').hide();
    });
  
    // setup the pin hovers
    $('div.pins').mouseover(function(){
      var thisRel = $(this).attr('rel');
      $('li[rel=' + thisRel +'] span').show();
    }).mouseout(function(){
      var thisRel = $(this).attr('rel');
      $('li[rel=' + thisRel +'] span').hide();
    });
  
 });


});