function postProcess() {
	//masthead info
	document.getElementById('temp_f').innerHTML = temp_f;
	document.getElementById('temp_c').innerHTML = temp_c;
	// document.getElementById('dayCount').innerHTML = dayCount;
}
// New line taking advantage of addLoadEvent follows
addLoadEvent(postProcess);

