function startupHome() {
	try{
		var dateToday = new Date();
		var dateWedding = new Date("Oct 23 2004 13:00:00");
		document.getElementById('DaysMarried').innerHTML = Math.round((dateToday - dateWedding) / 86400000) + ' days married.';      
	}catch(e){alert(e.message);}
}