function setTall() {
	if (document.getElementById('inspire_text')) {
		var i_text = document.getElementById('inspire_text');
		t_h = i_text.offsetHeight;
		i_text.style.paddingTop = (420 - (t_h + 60)) + 'px';
	}
}
 
window.onLoad = function() {
 	setTall();
}

window.onResize = function() {
	setTall();
}