function cal() {
	var obj = document.getElementById('size');
	if(obj.value != 0) {
		document.getElementById('city').innerHTML = (Math.round(((((obj.value * 0.66) - 4) / 2.5) * 10)) / 10) + '"';
		document.getElementById('mtb').innerHTML = (Math.round(((((obj.value * 0.66) - 8) / 2.5) * 10)) / 10) + '"';
		document.getElementById('racer').innerHTML = (Math.round((((obj.value * 0.66) / 2.5) * 10)) / 10) + '"';
	}
}
function hover(tr) {
	tr.style.backgroundColor = '#cecece';
}
function out(tr, color) {
	tr.style.backgroundColor = '#' + color;
}
