onload=function(d,E,b,i,a){
   var tooltip={
      'foto':'<img src="img/johny.jpg" />'
   }
  d=document;E=d.documentElement;b=d.body;if(!E)return;
  for(i=0;a=(d.all?b.all:b.getElementsByTagName("*"))[i];i++){
    if(a.id in tooltip){
      with(a.t=d.createElement("div")){
        className="tooltip"
        innerHTML=tooltip[a.id]
      }
      a.onmouseover=function(e){
        with(this){onmousemove(e)}
        b.appendChild(this.t)
      }
      a.onmouseout=function(){
        b.removeChild(this.t)
      }
      a.onmousemove=function(e){
        e=e||event;with(this.t.style){
         left=e.clientX+(E.scrollRight||b.scrollLeft)-600+"px"
         top=e.clientY+(E.scrollTop||b.scrollTop)-150+"px"
        }
      }
    }
  }
}
