    ///top
    var topimg=new Array(); 
    topimg[0]="SeeBa/top/001.jpg";
    topimg[1]="SeeBa/top/002.jpg";
    topimg[2]="SeeBa/top/003.jpg";
    topimg[3]="SeeBa/top/004.jpg";
    topimg[4]="SeeBa/top/005.jpg";
    topimg[5]="SeeBa/top/006.jpg";
    topimg[6]="SeeBa/top/007.jpg";

    
    var topn=0; 
    
    var toppreloadedimages=new Array(); 
    
    for (i=0;i<topimg.length;i++)
    { 
        toppreloadedimages[i]=new Image(); 
        toppreloadedimages[i].src=topimg[i]; 
    }
    
    function topsetTransition()
    { 
        if (document.all)
        { 
            document.images.topid.filters.revealTrans.Transition=Math.floor(Math.random()*23); 
            document.images.topid.filters.revealTrans.apply(); 
        } 
    } 
      
    function topplayTransition()
    { 
        if (document.all) 
            document.images.topid.filters.revealTrans.play(); 
    } 
      
    function nexttop()
    { 
        if(topn<topimg.length-1)topn++ ; 
        else topn=0; 
        topsetTransition(); 
        //document.images.topid.alt+="a";
        document.images.topid.src=topimg[topn]; 
        topplayTransition(); 
        theTimer=setTimeout("nexttop()", 3500); 
    } 
