$(document).ready(function() {
  $('#inscription_step2 .radio').click( function(){
    var rel = $(this).attr('rel'); 
    var id = $(this).attr('id'); 

    $('#inscription_step2 .radio').each( function (){
      if ($(this).attr('rel') == rel && $(this).attr('id') != id){
        $(this).attr({checked: 0});
      }
    });
  });
  
  $("a[rel=album]").colorbox(); 
}); 
