//Bilderübersicht

var Pic = new Array()	;
c=0; Pic[c] = new Array("upload/profilbilder/slide_johannes.jpg","HOFBAUER","Johannes");
c++; Pic[c] = new Array("upload/profilbilder/slide_ignaz.jpg","HOFHUND IM HIMMEL","Ignaz");
c++; Pic[c] = new Array("upload/profilbilder/slide_harald.jpg","GASTWIRT","Harald");


	var slideShowSpeed = 5000;
	var crossFadeDuration = 5;


var t;
var j = 0;
var p = Pic.length;
	
var preLoad = new Array();
	for (i = 0; i < p; i++){
	   preLoad[i] = new Image();
	   preLoad[i].src = Pic[i][0];
	}
	
function runSlideShow(){
	   if (document.all){
	      document.images.SlideShow.style.filter="blendTrans(duration=2)";
	      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
	      document.images.SlideShow.filters.blendTrans.Apply();
	   }
	   document.images.SlideShow.src = preLoad[j].src;
	   document.getElementById("slideshowtxt1").firstChild.nodeValue=Pic[j][1];
	   document.getElementById("slideshowtxt2").firstChild.nodeValue=Pic[j][2];
	   
	   if (document.all){
	      document.images.SlideShow.filters.blendTrans.Play();
	   }
	   j = j + 1;
	   if (j > (p-1)) j=0;
	   t = setTimeout('runSlideShow()', slideShowSpeed);
	}