
var time = 6000 //Die Zeit wie lange ein Bild angezeigt wird in ms
var bild = new Array();

bild[1] = "http://www.pmeurotrading.com/webshop/images/Bilder_Topprodukte/emailwerbungen/2009/emailwerbung_kw49_koffer_o.jpg";
bild[2] = "http://www.pmeurotrading.com/webshop/images/Bilder_Topprodukte/emailwerbungen/2009/emailwerbung_kw44_stopschild_o.jpg";
bild[3] = "http://www.pmeurotrading.com/webshop/images/Bilder_Topprodukte/emailwerbungen/2009/emailwerbung_kw48_koffer_o.jpg";
bild[4] = "http://www.pmeurotrading.com/webshop/images/Bilder_Topprodukte/emailwerbungen/2009/emailwerbung_kw48_koffer_o.jpg";

var url = new Array

url[1] ="http://www.pmeurotrading.com/webshop/advanced_search_result.php?keywords=polycarbonatschalen+29361+29172";
url[2] ="http://www.pmeurotrading.com/webshop/Gesamtuebersicht-unserer-Artikel/Einparkhilfe-LED-Stopschild--2224.html";
url[3] ="http://www.pmeurotrading.com/webshop/advanced_search_result.php?keywords=polycarbonatschalen+29361+29172";
url[4] ="http://www.pmeurotrading.com/webshop/advanced_search_result.php?keywords=polycarbonatschalen+29361+29172";


function bildwechseln() {
var anzahl = bild.length;
var nr = Math.floor(Math.random()*anzahl);
document.wechselbild.src = bild[nr];
document.getElementById('link').href = url[nr];
setTimeout("bildwechseln()",time);

}

