jQuery.noConflict();

jQuery(function($){
  $(".products a").click(function(){
    return false;
  });
  $(".products a").each(function(i){
    $(this).qtip({
      content: '<img src="'+$(this).attr("href")+'" />',
      /* container: $(this).parent(),*/
      position: { target: 'mouse', corner: { target: 'rightMiddle', tooltip: 'leftTop' }, adjust: { screen: true } },
      show: { effect: { length: 300 } },
      hide: { effect: { length: 300 } },
      style: { border: { width: 0 }, margin: 0, padding: 0, width: 'auto', background: '#fff' }
    });
  });
});