
           	k=0;

        	TopAngebot_Bild_height = new Array();
        	TopAngebot_Bild_width = new Array();
            TopAngebot_Bild = new Array();
            TopAngebot_Alt  = new Array();
            TopAngebot_Link = new Array();
            TopAngebot_Text = new Array();

TopAngebot_Bild_width[0] ="none";
TopAngebot_Bild_height[0] ="none";
TopAngebot_Bild[0] ="http://www.daz24.de/dyn_pic.php?infile=b644e4e4f0ec21dd276d87323f090ee5230911082802/9e2c0b0add7bf8edb3ec3640d1c82025_0001.jpg&mode=detail";
TopAngebot_Alt[0] ="BMW 123 Cabrio Diesel Aut.";
TopAngebot_Link[0] ="http://www.daz24.de/fzdw/forward.php?link=www.vw-harburg.de";
TopAngebot_Text[0] = "<strong>BMW</strong> <strong>123 Cabrio Diesel Aut.</strong> <strong>150kW,</strong> Leder,  PDC,  Klima,  Xenonlicht,  Tempomat,  LM-Felgen,  Partikelf.,  BMW Busin...  <strong>31680.- €</strong>";

        var speed=10000;
        var k=0;

        function anzeigen(){
            i = k++;

            document.getElementById('link').href = TopAngebot_Link[i];
            document.getElementById('link').title = TopAngebot_Alt[i];
            document.getElementById('TopAngebot_Bild').src = TopAngebot_Bild[i];
        	if ( TopAngebot_Bild_width[i] != 'none' ){
        	document.getElementById('TopAngebot_Bild').style.width = TopAngebot_Bild_width[i];
        	}
        	else{
        	document.getElementById('TopAngebot_Bild').style.width = '';
        	}
        	if ( TopAngebot_Bild_height[i] != 'none' ){
        	document.getElementById('TopAngebot_Bild').style.height = TopAngebot_Bild_height[i];
        	}
        	else{
        	document.getElementById('TopAngebot_Bild').style.height = '';
        	}
            document.getElementById('TopAngebot_Bild').alt = TopAngebot_Alt[i];
            document.getElementById('TopAngebot_Text').innerHTML = TopAngebot_Text[i];
            if (k == TopAngebot_Bild.length){
                k = 0;
            }
        }
        window.setInterval('anzeigen()',speed);
        
