2012 SCRA President, Tyler Clifford
|
"Providence has given to our people the choice of their rulers, and it is the duty, as well as the privilege and interest of our Christian nation to select and prefer Christians for their rulers." -- John Jay, October 12, 1816 (1745-1829) -- Founding Father who, among other positions, was First Chief Justice of the U.S. Supreme Court, member of the First and Second Continental Congresses, President of the Continental Congress and a writer of the Federalist Papers.
|
until 2012 primary election
|
var sec = 30; // set the seconds
var min = 02; // set the minutes
function countDown() {
sec--;
if (sec == -01) {
sec = 59;
min = min - 1;
} else {
min = min;
}
if (sec<=9) { sec = "0" + sec; }
time = (min<=9 ? "0" + min : min) + " min and " + sec + " sec ";
if (document.getElementById) { theTime.innerHTML = time; }
SD=window.setTimeout("countDown();", 1000);
if (min == '00' && sec == '00') { sec = "00"; window.clearTimeout(SD); }
}
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
addLoadEvent(function() {
countDown();
});