var $l = jQuery.noConflict();

$l(function() {

  $l(".add-cart-pop").hover(
    function () {
      $l(".pop-box", this).show();
    }, 
    function () {
      $l(".pop-box", this).hide();
    }
  );

  $l(".pop-close").click(function () {
      $l(this).parent().parent().hide();
  });
  
    $l(".call-to-configure").hover(
    function () {
      $l(".pop-box", this).show();
    }, 
    function () {
      $l(".pop-box", this).hide();
    }
  );

  $l(".call-to-configure").click(function () {
      $l(this).parent(".pop-box").hide();
  });
});
