// JavaScript Document

function resetHeight(_newHeight){
	var container = document.getElementById("website");
	container.style.height = (_newHeight == 100) ? 99 : _newHeight + ((_newHeight == 100) ? "%" : "px");
	scrollToTop();
}

function scrollToTop(){
	scroll(0,0);
}
