FotoImg = new Array();
FotoTxt = new Array();

FotoImg[1] = "fotos/f_klubhaus1.jpg";
FotoTxt[1] = "Klubhaus - Terrasse";

FotoImg[2] = "fotos/f10bl_meister2.jpg";
FotoTxt[2] = "Deutrscher Meister 2010";

FotoImg[3] = "fotos/f10bl_meisterfeier_hp1.jpg";
FotoTxt[3] = "Juan Pablo Brzezicki und Alexander Peya feiern";

FotoImg[4] = "fotos/f10j_ilovegw.jpg";
FotoTxt[4] = "I love Grün-Weiss";

FotoImg[5] = "fotos/f_klubhaus2.jpg";
FotoTxt[5] = "Klubhaus - Terrasse";

FotoImg[6] = "fotos/f11d_kastner3.jpg";
FotoTxt[6] = "Felicitas Kastner";


var LastFoto = 6;

var HTMLTxtF1 = "<img src=\"";
var HTMLTxtF2 = "\" alt=\"";
var HTMLTxtF3 = "\">";


/* Laden der Bilder beim Seitenaufbau */
for( i =  1;
     i <= LastFoto;
     i ++         )
{
  img = new Image();
  img.src = FotoImg[i];
}

var CurrFoto = 0;


// Wechselnde Fotos anzeigen
function showFotos()
{
  var lTxt;

  CurrFoto = CurrFoto + 1;
  if( CurrFoto > LastFoto )
    CurrFoto = 1;
  elementFoto           = document.getElementById( "newsFotos" );
  elementFoto.innerHTML = HTMLTxtF1 + FotoImg[CurrFoto] +
                          HTMLTxtF2 + FotoTxt[CurrFoto] +
                          HTMLTxtF3;
  window.setTimeout("showFotos()", 5000);
}
