function displayDedt() {
	var myDate = new Date("January 3, 2009 00:00:00"); // Your timezone!
	var myEpoch = myDate.getTime()/1000.0;
	
	var curDate = new Date(); // Your timezone!
	var curEpoch = curDate.getTime()/1000.0;

	var seconds = Math.round(curEpoch - myEpoch);
	var startDebt = 10627961295930.67; 
	var debtPerSecond = 53056.24;
	var curDebt = (debtPerSecond * seconds);
	var totalDebt = startDebt + curDebt;
	
	var totalPop = 308790473;
	var dedtPerCitizen = (totalDebt / totalPop);

	
	//txt = "myDate: " + myDate + "<br />";
	//txt = txt + "Date he took office: " + myEpoch + "<br />";
	//txt = txt + "curDate: " + curDate + "<br />";
	//txt = txt + "seconds between dates: " + seconds + "<br />";
	//txt = txt + "startDebt (January 3, 2009 00:00:00): " + getMoney(startDebt) + "<br />";
	//txt = txt + "debtPerSecond(approximate): " + getMoney(debtPerSecond) + "<br />";
	//txt = txt + "Debt added since January 3, 2009 00:00:00: " + getMoney(curDebt) + "<br />";

	//txt = txt + "<br /><br /><br />";
	//txt = txt + "<b>National dedt has increased by $" + getMoney(curDebt) + " from the day Jared Polis assumed office to total debt of $" + getMoney(totalDebt) +" as of right now!</b><br />";
	//txt = txt + "<b>Your portion of this dedt $" + getMoney(dedtPerCitizen) + ".</b><br />";
	txt = "<h4 class=\"style4\">US DEBT: $" + getMoney(totalDebt) + "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DEBT SINCE POLIS: $" + getMoney(curDebt) + "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; YOUR SHARE: $" + getMoney(dedtPerCitizen) + "</h4>";
	document.getElementById("showDebt").innerHTML=txt;
}


  function getMoney(A){ 
    var a = new Number(A); 
    var b = a.toFixed(2); //get 12345678.90 
    a = parseInt(a); // get 12345678 
    b = (b-a).toPrecision(2); //get 0.90 
    b = parseFloat(b).toFixed(2); //in case we get 0.0, we pad it out to 0.00 
    a = a.toLocaleString();//put in commas - IE also puts in .00, so we'll get 12,345,678.00 
    //if IE (our number ends in .00) 
    if(a.lastIndexOf('.00') == (a.length - 3)) 
    { 
        a=a.substr(0, a.length-3); //delete the .00 
    } 
    return a+b.substr(1);//remove the 0 from b, then return a + b = 12,345,678.90 
} 
