function bildPos(elt,was,x,y)
{
    var p = elt;
    while(p != null)
    {
        x += parseInt(p.offsetLeft);
        y += parseInt(p.offsetTop);
        p = p.offsetParent;
    }
    wohn = document.getElementById(was);
    wohn.style.top = y;
    wohn.style.left = x;
    elt.className='bild_over';
}
function bildWech(elt,bild)
{
     bildObj = document.getElementById(bild) ;
     bildObj.style.top = -550;
     bildObj.style.left = -700;
     elt.className='bild';
}
