jQuery.noConflict();
jQuery(function() {

  jQuery(".question-pop").hover(
    function () {
      jQuery(".pop-box", this).show();
    }, 
    function () {
      jQuery(".pop-box", this).hide();
    }
  );
  
});
