    if(typeof(adic_carr)=='undefined'){
        function adic_carr(){
            location='../_shop/carrinho.php?prod_adic='+this.getAttribute('cod');
        }
    }
    var imgs = document.images;
    for(var i=0, len=imgs.length; i<len; i++){
        if(imgs[i].src.match(/(\/0|disp_ico)\.gif$/i)){
            imgs[i].src = '../img_shop/carrinho5.gif';
            imgs[i].onclick = adic_carr;
            imgs[i].title = 'Colocar este produto no carrinho de compras';
            imgs[i].style.cursor = 'pointer';
        }else if(imgs[i].className.match(/^notif$/)){
            imgs[i].className = '';
        }
    }
    delete(imgs);