$(function() {

    var url = "";

    $(".quick-look").each(function() {
    
        url = $(this).attr("rel");
        url = url + " #content";
    
        $(this).load(url, function() {
        
            $(this).find("#product-images a").removeAttr("href");
        
        });
    
    });
    
});