jQuery.noConflict();
jQuery(document).ready(function($){

  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	});
  
});
