var Days = new Array('<font style="color:#eeca00; font-size:16px;">Sunday</font>','<font style="color:#eeca00; font-size:16px;">Monday</font>','<font style="color:#eeca00; font-size:16px;">Tuesday</font>','<font style="color:#eeca00; font-size:16px;">Wednesday</font>','<font style="color:#eeca00; font-size:16px;">Thursday</font>','<font style="color:#eeca00; font-size:16px;">Friday</font>','<font style="color:#eeca00; font-size:16px;">Saturday</font>');var cDH = "";var cTH = "";
function gDT(){var t = new Date();var Y = lZ(t.getFullYear());var M = lZ(t.getMonth()+1);var DN = Days[t.getDay()];var D = lZ(t.getDate());var H = t.getHours();var ampm = "am";
if (H > 11) ampm = "pm"; if (H == 0) H = 12;if (H > 12) H -= 12;H = lZ(H);var Minutes = lZ(t.getMinutes());cDH ='<font color="#eeca00">'+ DN + '</font>' + ' '+
'<font style="color:#eeca00; font-size:16px;">'+ M + '-</font><font style="color:#eeca00; font-size:16px;">'+ D + '-</font><font style="color:#eeca00; font-size:16px;">'+ Y + '</font>';
cTH = '<font style="color:#eeca00; font-size:16px;">'+ H + ':</font><font style="color:#eeca00; font-size:16px;">'+ Minutes + '</font>' + ' '+'<font style="color:#eeca00; font-size:16px;">'+ ampm + '</font>';
document.getElementById("d").innerHTML = cDH;document.getElementById("t").innerHTML = cTH;setTimeout("gDT()",30000);}
function lZ(nr){if (nr < 10) nr = "0" + nr;return nr;}

