Komme aus dieser Box nicht mehr raus

  • Hab mal alles überflüssige aus meinem Code weggenommen. Es scollt ein Text in einer vordefinierten Box. Nun möchte ich, das neben dieser Box zu den Wörtern passend, Bilder erscheinen. (ohne klick) automatisch.
    Wie bastelt man das?

    Inhalt von index.html

    <script type="text/javascript">
    var iframesrc="text.html"
    document.write('<iframe id="datamain" src="'+iframesrc+'" width="360px" height="244px" marginwidth="0" marginheight="0" hspace="110" vspace="180" frameborder="1" scrolling="no"></iframe>')
    </script>

    Inhalt von text.html

    <div id="datacontainer" style="position:absolute;left:1px;top:10px;width:1 00%" onMouseover="scrollspeed=0" onMouseout="scrollspeed=cache">


    <h2>
    Autos:


    Ford


    Opel


    BMW


    Mitsubishi


    Honda
    </h2>
    </div>

    <script type="text/javascript">
    var scrollspeed=cache=1
    var initialdelay=500
    function initializeScroller(){
    dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
    dataobj.style.top="5px"
    setTimeout("getdataheight()", initialdelay)
    }
    function getdataheight(){
    thelength=dataobj.offsetHeight
    if (thelength==0)
    setTimeout("getdataheight()",10)
    else
    scrollDiv()
    }
    function scrollDiv(){
    dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed+"px"
    if (parseInt(dataobj.style.top)<thelength*(-1))
    dataobj.style.top="5px"
    setTimeout("scrollDiv()",100)
    }
    if (window.addEventListener)
    window.addEventListener("load", initializeScroller, false)
    else if (window.attachEvent)
    window.attachEvent("onload", initializeScroller)
    else
    window.onload=initializeScroller
    </script>

    Würde mich freuen wenn jemand einen Rat hat.
    mfg
    Kurt