<!--
var atl2 = null;
var drn2 = false;
var snl2 = 10;

function laden2(){
	
    i2 = 85;
    j2 = 0;
    stop2();
    start2();

}

function start2(){
	
document.getElementById('header').style.height = i2 + 'px';
document.getElementById('header').style.backgroundColor = '#FF0000';

i2--;
drn2 = true;
atl2 = self.setTimeout("start2()", snl2);

}

function stop2(){
	
         if(drn2){
            clearTimeout(atl2);
         }
	 
         drn2 = false;
    
}
//-->

