

jQuery(function(){
  var at = '@';
  var domain = 'conseil-et-recherche.com';

  jQuery('.details-pers:first').css('display', 'block');

  jQuery('#ul-perso li').hover(function(){
//    jQuery('#div-e-details').css('height', jQuery('.details-pers').css('height'))
    jQuery('.details-pers').hide();
    var index = jQuery(this).index();
    jQuery('.details-pers').eq(index).show();
	
	//fix parenthesis height
	var hh = jQuery('#div-e-details').height();
	jQuery('.limiter img').height(hh);
  });

  //link webmaster: mail to
  jQuery('#link-webmaster').click(function(event) {
    event.stopPropagation();
    location.href = 'mailto:webmaster'+at+domain;
    return false;
  });
  
  //write link contact
  jQuery('.contact-addr').html('contact'+at+domain);

  //accordion modalités d'interventions'
  jQuery('.a-detail').click(function(event){
    event.stopPropagation();
    jQuery('.a-detail').not(this).next().hide();
    if(jQuery(this).next().css('display') == 'none'){
      jQuery(this).next().slideDown('fast');
    }
    else{
      jQuery(this).next().slideUp('fast');
    }
    return false;
  });
});
