<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// fliessbild
		var counter = 1;
		var start = 515;
		var stp = 0;
        function fade(step) {
            var imgs = document.getElementById("js_bilder").getElementsByTagName("img");

			step = step || 1;

				imgs[counter].style.left = start - step + "px"; 

            step++;
			
            if ((start-step) >= stp) {
                window.setTimeout(function () { fade(step); }, 30);
            } else {
				window.setTimeout(
					function ()
						{
							counter++;
							if (counter >= imgs.length)
								{ 
									for (counter =1; counter < imgs.length; counter++)
										{
											imgs[counter].style.left = start + "px";
										}
									counter = 1;		
								} 
							fade();
						}, 2000);
            }
        }

//-->
