function dk(e,v){

    var t=document.createElement("div");
    t.style.position="absolute";
    t.style.cursor="hand;"
    titl=v.title;
    s=v.title;
    t.innerHTML='<div class="do_koszyka_chmurka"></div>';
    v.title="";
    v.move=function(e){
      t.style.cursor="hand;"
      e=e||event;
      t.style.left=e.clientX+document.body.scrollLeft+-15+"px";
      t.style.top=e.clientY+15+document.body.scrollTop+-55+"px";
    }
    v.move(e);
    document.body.appendChild(t);
    v.onmousemove=function(e){v.move(e);}
    v.onmouseout=function(e){
      s=t.innerHTML;
      document.body.removeChild(t);
      v.title=titl;
    }

}
