var info = new Array();

info[0] = "Info 1";
info[1] = "Info 2";
info[2] = "Info 3";
info[3] = "Info 4";
info[4] = "Info 5";
info[5] = "Info 6";
info[6] = "Info 7";
info[7] = "Info 8";
info[8] = "Info 9";

function show_info(e, idx)
{
    if(!e)
        e = window.event;
    
    var d = document.createElement("div");
    
    d.setAttribute("id", "info");
    d.setAttribute("onmouseover", "repos_info(event);");
    d.style.position = "absolute";
    d.style.left = e.pageX + 15 + "px";
    d.style.top = e.pageY + "px";
    d.style.border = "thin solid black";
    d.style.backgroundColor = "white";
    d.appendChild(document.createTextNode(info[idx]));
    
    document.getElementById("bilder").appendChild(d);
}

function repos_info(e)
{
    if(!e)
        e = window.event;
    
    var d = document.getElementById("info");
    
    if(!d)
        return;
    
    d.style.left = e.pageX + 15 + "px";
    d.style.top = e.pageY + "px";
}

function hide_info()
{
    document.getElementById("bilder").removeChild(document.getElementById("info"));
}
