function parseNumber(input) {
	input.value = Math.round(input.value);

	if(input.value === 'NaN') {
	input.value = 1;
	}
}
