var i = 552;
var daempfung = 0.97;

function slider()
{
		document.getElementById('blau').style.width = i + "px";

		 i = i * daempfung;
		
		if ( i != 0 )
		{
				window.setTimeout( 'slider()', 10 );
		}
	else
		{
				window.location.href = 'wir.html';	      	
		}

		if ( i <= 500 )
		{
				document.getElementById('starttext').style.display = "none";
		}

		if ( i <= 2 )
		{
				i = 0;
		}
}



