/**
 *
 * @access public
 * @return void
 **/
 var step;
 var bildbox;
 var bild;
 var archivbilder = new Array()

 archivbilder[0] = new Image();
 archivbilder[0].src="pics/vita/archivbild01.jpg";

 archivbilder[1]= new Image();
 archivbilder[1].src="pics/vita/archivbild02.jpg";

 archivbilder[2]= new Image();
 archivbilder[2].src="pics/vita/archivbild03.jpg";

 archivbilder[3]= new Image();
 archivbilder[3].src="pics/vita/archivbild04.jpg";

 archivbilder[4]= new Image();
 archivbilder[4].src="pics/vita/archivbild05.jpg";

 archivbilder[5]= new Image();
 archivbilder[5].src="pics/vita/archivbild06.jpg";

 archivbilder[6]= new Image();
 archivbilder[6].src="pics/vita/archivbild07.jpg";

 archivbilder[7]= new Image();
 archivbilder[7].src="pics/vita/archivbild08.jpg";

 archivbilder[8]= new Image();
 archivbilder[8].src="pics/vita/archivbild09.jpg";

 archivbilder[9]= new Image();
 archivbilder[9].src="pics/vita/archivbild10.jpg";

 archivbilder[10]= new Image();
 archivbilder[10].src="pics/vita/archivbild11.jpg";

 archivbilder[11]= new Image();
 archivbilder[11].src="pics/vita/archivbild12.jpg";

 archivbilder[12]= new Image();
 archivbilder[12].src="pics/vita/archivbild13.jpg";

 archivbilder[13]= new Image();
 archivbilder[13].src="pics/vita/archivbild14.jpg";

 var newpic=  new Image();

function showpicture(nummer){
	//document.getelementbyname("showbild").src="logo.gif";
   	//document.getElementByID('showwindow').style.visibility = "hidden";
   	//document.getElementById("showwindow").align = "center";
   	document.getElementById("showwindow").style.visibility = "visible";
   	document.getElementById("showbild").src = archivbilder[nummer].src;
   	document.getElementById("showbild").style.BorderWidth="0px";
   	//newpic.src=pic2;

	//window.alert('Hallo');
	//startanimation();
}

function hidepicture() {
	document.getElementById("showbild").src = "images/loading.gif";
	document.getElementById("showwindow").style.visibility = "hidden";

}

function startanimation(){
	bildbox = document.getElementById("showwindow");
	bild = document.getElementById("showbild");
	//bildbox.style.left="700px";
	step=450;
	bildbox.style.height=step+"px";
	bildbox.style.overflow="hidden";
	move_bild();
}

function move_bild(){
    step = step-1;
    bildbox.style.height = Math.round(step) + "px";
    window.setTimeout("wech()", 1000);

}

function wech(){
	step = step-10;
	if (step>2) {
	 bildbox.style.height = Math.round(step) + "px";
	 aktivw=setTimeout("wech()",2);
	}
    if (step<=2) {

    	bild.src=newpic.src;
    	hin();
    }
}


function hin(){
	if (step<450) {
	  step = step+10;
	  bildbox.style.height = Math.round(step) + "px";
	  aktiv = setTimeout("hin()",2);
	}
}

function show_bild(){
 if (step<bild.height) {
    step = step+1;
    bildbox.style.height = Math.round(step) + "px";
    //bild.height=math.round(step) + "px";
    window.setTimeout("show_bild()", 5);
  }
}

function Einblenden()
{
 bildbox.filters.revealTrans.Transition = 5;
 bildbox.filters.revealTrans.Apply();
 bildbox.style.visibility = "visible";
 bildbox.filters.revealTrans.Play();
 bildbox.style.display = "none";
 bildbox.style.display = "inline";
}
function Ausblenden()
{
document.all.Bild.filters.revealTrans.Transition = 23;
document.all.Bild.filters.revealTrans.Apply();
document.all.Bild.style.visibility = "hidden";
document.all.Bild.filters.revealTrans.Play(); document.all.ein.style.display = "inline";
document.all.aus.style.display = "none";
}