<!--
function reAdjust(){
var curHeight = document.getElementById('main').offsetHeight;
	if (curHeight<480){
		var needsToGrow = 480-curHeight;
			document.getElementById('main').style.paddingBottom=needsToGrow + 'px';
		}
	}
//-->
