//jQuery.noConflict();

console.log(jQuery("p.product-overview a"));

jQuery(document).ready(function(){
    jQuery("p.product-preview a").bind("click",function(jQueryEvent){

    	
    	
    	jQueryEvent.preventDefault();
    	
    	jQueryEvent.stopPropagation();
    	
    	var a = jQueryEvent.target;
    	    	
    	window.open(a.getAttribute("href"),'_blank');
    });
  });
