function expand() {


	var about_roll = document.getElementById("about_roll");

	var height = x +"px";
	
	about_roll.style.display= 'block';
	about_roll.style.height = height;
		

	x=x+15;
	
	if (x <820) {
		setTimeout("expand()",1);
		}
		
	}

