var fotos2=new Array('http://www.bagpax.de/home/3b6cf24c7b3e0636bbb9d6380a1d7e9e/uploads/index_kombi2.jpg', 
'http://www.bagpax.de/home/3b6cf24c7b3e0636bbb9d6380a1d7e9e/uploads/index_kombi3.jpg');

  var speed=3000;
  var pos=0;

function slideshow2 () {

  if (!(document.bild2)) {return;}

  document.bild2.src=fotos2[pos++];

  if (pos == fotos2.length) { pos = 0; }
  
  setTimeout("slideshow2();",speed);

}
