function showImage(obj, src, name){
  if(!$('bigphoto')){
    var img=new Image();
    var timer;
    var div=document.createElement('div');
    div.id='bigphoto';
    div.innerHTML='<img src="'+src+'" alt="фото" /><div><i>'+name+'</i></div>';
    div.onmouseover=function(){hideImage();};
    
    img.src=src;
    timer=setInterval(function(){
      if(img.height){
        var left=getLeft(obj)+20;
        var top=getTop(obj)-40-img.height;
        
        if(top<10){top=10;}
        
        div.style.left=left+'px';
        div.style.top=top+'px';
        document.body.appendChild(div);
        clearInterval(timer);
      }
    }, 1);
  }
}

function hideImage(){
  if($('bigphoto')){$('bigphoto').parentNode.removeChild($('bigphoto'));}
}
