var nNum 		= 1;
var nN2			= 1;
var fRunning 	= 0;
var i 			= -1;
var onoff		= 0;

// activate Timer on load
var td1;
var speed = 5000;

setTimeout("Show_Pics()",speed);
el = document.getElementById("Bild");
	

// play animation (pics & textmessages)
function Show_Pics() {
var cSource
cSource = "images/bild1.jpg";

el = document.getElementById("Bild");

	++nNum
	if (nNum == 4 )
	 {
	 nNum = 1;
	 }

	

	if (nNum == 1){
	 cSource = "images/Bild1.jpg"
	 }

	if (nNum == 2){
	 cSource = "images/Bild2.jpg"
	 }
	 
	 if (nNum == 3){
	 cSource = "images/Bild3.jpg"
	
	 }



	 
	if (nN2 == 1) {
		try{
			if (fRunning == 0)
				{
				fRunning = 1
				el.filters[0].Apply();
				el.src = cSource;
		                el.alt="";
				el.filters[0].Play();
				fRunning = 0;

			}
		}
		catch(e)
		{
			fRunning = 1
			el.src = cSource;
	        	el.alt="";
			fRunning = 0;
		}
	}
	

	setTimeout("Show_Pics()",speed);

	 
	 
}


// change picture
function MSclickSwapImg(el,cFile)	{
        if(document.all || document.layers)
        {
    		el.src=cFile;
        }
	}






// check Arraylength
function InfoArray(len) {
	this.length=len
}



function window_onresize() {
var el = document.getElementById("Bild");

}

