/*
ouvrir un element
------------------------------
*/
$(document).ready( function() {
  if(!open) $('#infoContact').hide();
  $('.infoLien > span').css("cursor","pointer");
  $('.infoLien > span').hover(
    function () {
      $(this).css("background-position","-335px 0");
    },
    function () {
      $(this).css("background-position","0 0");
    }
  );

  $('.infoLien > span').click(function(){
    $('#infoContact').toggle('fast');
  });
});
