    /*** ============================== ***/
    /*** Interaktive Slideshow mit Text ***/
    /*** ============================== ***/

    my_PlayMode = 0;
    my_iimg = -1;
    my_imax = 0;
    my_Images = new Array();

    function ChangeImage(fFwd)
    {
    if (fFwd)
    {
    if (++my_iimg==my_imax)
    my_iimg=0;
    }
    else
    {
    if (my_iimg==0)
    my_iimg=my_imax;
    my_iimg--;
    }
    Update();
    }

    function getobject(obj){
    if (document.getElementById)
    return document.getElementById(obj)
    else if (document.all)
    return document.all[obj]
    }

    function Update(){
    getobject("my_Slide").src = my_Images[my_iimg][0];
    getobject("my_FileName").innerHTML = my_Images[my_iimg][1];
    }

    function Play()
    {
    my_PlayMode = !my_PlayMode;
    if (my_PlayMode)
    {
    getobject("Prev").disabled = getobject("Next").disabled = true;
    Next();
    }
    else
    {
    getobject("Prev").disabled = getobject("Next").disabled = false;
    }
    }
    function OnImgLoad()
    {
    if (my_PlayMode)
    window.setTimeout("Tick()", my_dwTimeOutSec*1000);
    }
    function Tick()
    {
    if (my_PlayMode)
    Next();
    }
    function Prev()
    {
    ChangeImage(false);
    }
    function Next()
    {
    ChangeImage(true);
    }

    // Zeit zwischen zwei Bildern //
    my_dwTimeOutSec=2

    // Diese Liste steht als JS im body-Bereich der HTML-Datei; sie beliebig erweitert werden //
//    my_Images[my_imax++] = new Array ("fia_2003_001_ew_gr.gif", "<div class='wiss'>Cantharellus cibarius</div><div class='ethno'>Echter Pfifferling</div><div class='zaehl'>[ 1 von 3 ]</div>");
//    my_Images[my_imax++] = new Array ("fia_2003_002_ew_gr.gif", "<div class='wiss'>Boletus edulis</div>       <div class='ethno'>Steinpilz</div>         <div class='zaehl'>[ 2 von 3 ]</div>");
//    my_Images[my_imax++] = new Array ("fia_2003_003_ew_gr.gif", "<div class='wiss'>Macrolepiota procera</div> <div class='ethno'>Parasolpilz</div>       <div class='zaehl'>[ 3 von 3 ]</div>");

    if (document.getElementById||document.all)
    window.onload=Play

