jQuery.noConflict();

jQuery(document).ready(function($){
  $("a.boutique_emplacement_point").bind('mouseover', function(){
    $(this).parent().next(".boutique_infobulle").show();
  });
  
  $("a.boutique_emplacement_point").bind('mouseout', function(){
    $(this).parent().next(".boutique_infobulle").hide();
  });

  $("li.boutique_from_thematique").bind('mouseover', function(){
    $("#"+$(this).children("a").attr('rel')).show();
  });

  $("li.boutique_from_thematique").bind('mouseout', function(){
    $("#"+$(this).children("a").attr('rel')).hide();
  });
});