var scrollTo_max = 0;

function scroll_to_element(el){
	if(el != null && typeof el != 'object'){
		el = document.getElementById(el);
		var posy = el_pos('top', el);
		
		if(scrollTo_max > posy){
			posy = scrollTo_max;
		} else {
			scrollTo_max = posy;
		}
		window.scrollTo(0, posy);
	}
	
}

