Created
May 2, 2012 18:55
-
-
Save ryenski/2579222 to your computer and use it in GitHub Desktop.
wpcajax.org Sermons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//<![CDATA[ | |
//-----Classes----- | |
function SermonProperty(data) | |
{ | |
this.data = data; | |
this.html = data; | |
this.compareTo = function(obj) | |
{ | |
var a=this.data; | |
var b=obj.data | |
if(a < b) | |
return -1; | |
else if(a == b) | |
return 0; | |
else | |
return 1; | |
}; | |
} | |
function SermonService(serviceString) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(serviceString); | |
if (!serviceList.containsLike(serviceString)) | |
{ | |
this.data = "error"; | |
} | |
} | |
function SermonDate(dateString) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(dateString); | |
try | |
{ | |
this.data = new Date(dateString); | |
} | |
catch (ex) | |
{ | |
this.data = new Date("1/1/2000"); | |
} | |
this.year = this.data.getFullYear().toString(); | |
var dateToString = function(theDate) | |
{ | |
var months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; | |
var month = months[theDate.getMonth()]; | |
var date = theDate.getDate(); | |
var year = theDate.getFullYear(); | |
return "{0} {1}, {2}".format(month, date, year); | |
}; | |
this.html = dateToString(this.data); | |
} | |
function SermonTitle(titleString, audioNumber) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(titleString.replace(/'/g,""")); | |
this.html = (audioNumber.length > 0 ? '<a href="http://www.sermonaudio.com/sermoninfo.asp?SID='+audioNumber+'" target="sermonaudio">'+titleString+'</a>' : titleString); | |
} | |
function SermonPassage(passageString) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(passageString); | |
// Sort by Biblical order | |
/* | |
this.compareTo = function(obj) | |
{ | |
var BibleBooks="GeneExodLeviNumbDeutJoshJudgRuth1 Sa2 Sa1 Ki2 Ki1 Ch2 ChEzraNeheEsteJob PsalProvEcclSongIsaiJereLameEzexDaniHoseJoelAmosObadJonaMicaNahuHabaZephHaggZechMalaMattMarkLukeJohnActsRoma1 Co2 CoGalaEphePhilColo1 Th2 Th1 Ti2 TiTituPhilHebrJame1 Pe2 Pe1 Jo2 Jo3 JoJudeReve"; | |
var a=this.data | |
var b=obj.data | |
var c=new String(); | |
var d=new String(); | |
c=a.substr(0,4); | |
d=b.substr(0,4); | |
c=BibleBooks.indexOf(c); | |
d=BibleBooks.indexOf(d); | |
if((c==-1)&&(d==-1)){c=a;d=b;} | |
if(c < d) | |
return -1; | |
else if(c == d) | |
{ | |
var pattern=/(?: +)(\d+)/i; | |
pattern.test(a) ? c=RegExp." : c=0; | |
pattern.test(b) ? d=RegExp." : d=0; | |
if(parseInt(c)<parseInt(d)) | |
return -1; | |
else if (parseInt(c)==parseInt(d)) | |
{ | |
var pattern=/(?::)(\d+)/i; | |
pattern.test(a) ? c=RegExp." : c=0; | |
pattern.test(b) ? d=RegExp." : d=0; | |
if(parseInt(c)<parseInt(d)) | |
return -1; | |
else if (parseInt(c)==parseInt(d)) | |
{ | |
var pattern=/(?::\d+ *- *)(\d+)/i; | |
pattern.test(a) ? c=RegExp." : c=0; | |
pattern.test(b) ? d=RegExp." : d=0; | |
if(parseInt(c)<parseInt(d)) | |
return -1; | |
else if (parseInt(c)==parseInt(d)) | |
{ | |
if(a.length < b.length) | |
return -1; | |
else if(a.length==b.length) | |
{ | |
return 0; | |
} | |
else | |
return 1; | |
} | |
else | |
return 1; | |
} | |
else | |
return 1; | |
} | |
else | |
return 1; | |
} | |
else | |
return 1; | |
}; | |
*/ | |
} | |
function SermonSpeaker(speakerString) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(speakerString); | |
// Sort by last name | |
/* | |
this.compareTo = function(obj) | |
{ | |
var a=this.data | |
var b=obj.data | |
var c,d; | |
c=a.match(/\s\S+$/i); | |
d=b.match(/\s\S+$/i); | |
if(c[0] < d[0]) | |
return -1; | |
else if(c[0] == d[0]) | |
{ | |
a=a.replace(/\s\S+$/i, ""); | |
b=b.replace(/\s\S+$/i, ""); | |
if(a < b) | |
return -1; | |
else if(a == b) | |
return 0; | |
else | |
return 1; | |
} | |
else | |
return 1; | |
}; | |
*/ | |
} | |
function SermonAudio(audioNumber, title) | |
{ | |
this.superClass = SermonProperty; | |
this.superClass(audioNumber); | |
this.html = (audioNumber.length > 0 ? '<a href="javascript:openSermonWindow(\''+ title.replace(/'/g,"\\'") +'\', \''+audioNumber+'\')">Listen</a> <a href="http://mp3.sa-media.com/filearea/'+audioNumber+'/'+audioNumber+'.mp3">Download</a>' : " "); | |
} | |
function Property(name) | |
{ | |
this.sortAscending = true; | |
this.name = name; | |
this.toString = function() | |
{ | |
return this.name; | |
}; | |
} | |
function Sermon(service, date, title, passage, speaker, audioNumber) | |
{ | |
Sermon.properties = [new Property("Service"), new Property("Date"), new Property("Title"),new Property("Passage"), new Property("Speaker"), new Property("Audio")]; | |
this.Service = new SermonService(service); | |
this.Date = new SermonDate(date); | |
this.Title = new SermonTitle(title, audioNumber); | |
this.Passage = new SermonPassage(passage); | |
this.Speaker = new SermonSpeaker(speaker); | |
this.Audio = new SermonAudio(audioNumber, title); | |
this.draw = function() | |
{ | |
var newRow = document.createElement("tr"); | |
document.getElementById("sermonTable").getElementsByTagName("tbody")[0].appendChild(newRow); | |
Sermon.properties.each(function(property) | |
{ | |
var newCell = document.createElement("td"); | |
newCell.innerHTML = this[property.name].html; | |
newRow.appendChild(newCell); | |
}, this); | |
}; | |
} | |
//-----Functions----- | |
//-----Extensions to standard objects----- | |
String.prototype.equals = function(obj) | |
{ | |
return obj != null && this.valueOf() == obj.valueOf(); | |
}; | |
// like C#'s String.Format, except this is an instance method | |
String.prototype.format = function() | |
{ | |
var pattern = /\{\d+\}/g; | |
var args = arguments; | |
return this.replace(pattern, function(capture){ return args[capture.match(/\d+/)]; }); | |
} | |
// behaves like Ruby's Array#each method | |
// the _bind_ parameter is used to set the _this_ in the _fn_ function | |
Array.prototype.each = function(fn, bind){ | |
for (var i = 0, l = this.length; i < l; i++) | |
fn.call(bind, this[i], i, this); | |
}; | |
// behaves like Ruby's Enumerable#find_all method | |
// the _bind_ parameter is used to set the _this_ in the _fn_ function | |
Array.prototype.findAll = function(fn, bind) | |
{ | |
var results = []; | |
for (var i = 0, l = this.length; i < l; i++) | |
{ | |
if (fn.call(bind, this[i], i, this)) results.push(this[i]); | |
} | |
return results; | |
}; | |
Array.prototype.containsLike = function(obj) | |
{ | |
for (var i = 0, l = this.length; i < l; i++) | |
{ | |
if (obj.equals(this[i])) return true; | |
} | |
return false; | |
}; | |
Array.prototype.findByName = function(name) | |
{ | |
for (var i = 0, l = this.length; i < l; i++) | |
{ | |
if (name.equals(this[i].name)) | |
return this[i]; | |
} | |
return null; | |
}; | |
//-----Other functions----- | |
function sortBy(sortBy, changeDirection) | |
{ | |
var property = Sermon.properties.findByName(sortBy); | |
if(sortBy.equals(sortColumn) || changeDirection) | |
{ | |
property.sortAscending = !property.sortAscending; | |
} | |
sortColumn = sortBy; | |
if(property.sortAscending) | |
{ | |
sermonList.sort(function(x,y){return x[sortBy].compareTo(y[sortBy])}); | |
} | |
else | |
{ | |
sermonList.sort(function(x,y){return y[sortBy].compareTo(x[sortBy])}); | |
} | |
drawSermons(); | |
} | |
function openSermonWindow(title, audioNumber) | |
{ | |
var features = "dependent=no,directories=no,width=320,height=120,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes,titlebar=yes,toolbar=no" | |
var sermonWindow=window.open("", "", features); | |
if(sermonWindow != null) | |
{ | |
var windowContent = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\ | |
<html xmlns="http://www.w3.org/1999/xhtml">\ | |
<head>\ | |
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" />\ | |
<title>'+title+'</title>\ | |
</head>\ | |
<body>\ | |
<div style="text-align:center; margin-top:10px; margin-bottom:10px">\ | |
<embed src="http://playmp3.sa-media.com/media/'+audioNumber+'/'+audioNumber+'.mp3" width="300" height="75" autostart="true" type="audio/mpeg" pluginspage="http://www.apple.com/quicktime/download/"></embed>\ | |
</div>\ | |
</body>\ | |
</html>'; | |
sermonWindow.document.write(windowContent); | |
sermonWindow.document.close(); | |
sermonWindow.focus(); | |
return; | |
} | |
} | |
function drawSermons() | |
{ | |
// Draw table header | |
var sermonHeader = document.getElementById("sermonHeader"); | |
if(sermonHeader.rows[0]) | |
sermonHeader.deleteRow(0); | |
var headerRow = document.createElement("tr"); | |
headerRow.id = "sermonHeaderRow"; | |
sermonHeader.appendChild(headerRow); | |
Sermon.properties.each(function(property) | |
{ | |
var newCell = document.createElement("td"); | |
var cssClass = (sortColumn.equals(property.name) ? 'sermonHeaderTextSortBy' : 'sermonHeaderText'); | |
var arrowCssClass = (sortColumn.equals(property.name) ? 'sermonSortArrowSortBy' : 'sermonSortArrow'); | |
var arrowText = property.sortAscending ? "^": "v"; | |
newCell.innerHTML = '<a href="javascript:sortBy(\'{0}\')" class="{1}">{2}</a>'.format(property, cssClass, property); | |
newCell.innerHTML += ' <a href="javascript:sortBy(\'{0}\', true)" class="{1}">{2}</a>'.format(property, arrowCssClass, arrowText); | |
headerRow.appendChild(newCell); | |
}); | |
// Draw table body | |
var filteredList = getFilteredList(); | |
var sermonBody = document.getElementById("sermonBody"); | |
while(sermonBody.rows[0]) | |
sermonBody.deleteRow(0); | |
for(var i=0;i<filteredList.length;i++) | |
filteredList[i].draw(); | |
} | |
function getFilteredList() | |
{ | |
var serviceValue = document.getElementById("serviceFilter").value; | |
var yearValue = document.getElementById("yearFilter").value; | |
var filteredList = sermonList.findAll(function(sermon) | |
{ | |
match = true; | |
if (!serviceValue.equals("All")) | |
{ | |
match = sermon.Service.data.equals(serviceValue); | |
} | |
if (match && !yearValue.equals("All")) | |
{ | |
match = sermon.Date.year.equals(yearValue); | |
} | |
return match; | |
}); | |
return filteredList; | |
} | |
function loadFilters() | |
{ | |
var yearList = new Array(); | |
sermonList.each(function(sermon) | |
{ | |
var year = sermon.Date.year; | |
if(!yearList.containsLike(year)) | |
yearList.push(year); | |
}); | |
yearList.sort(function(x,y){if(x>y) return -1; else if(x<y) return 1; else return 0;}); | |
var serviceFilter = document.getElementById("serviceFilter"); | |
var yearFilter = document.getElementById("yearFilter"); | |
// Clear existing data | |
serviceFilter.options.length = 0; | |
yearFilter.options.length = 0; | |
// Allocate space | |
serviceFilter.options.length = serviceList.length + 1; | |
yearFilter.options.length = yearList.length + 1; | |
var i = 0; | |
serviceFilter.options[i].value = serviceFilter.options[i].text = "All"; | |
i++; | |
serviceList.each(function(service) | |
{ | |
serviceFilter.options[i].value = serviceFilter.options[i].text = service; | |
i++; | |
}); | |
i = 0; | |
yearFilter.options[i].value = yearFilter.options[i].text = "All"; | |
i++; | |
yearList.each(function(year) | |
{ | |
yearFilter.options[i].value = yearFilter.options[i].text = year; | |
i++; | |
}); | |
} | |
//--------------------Instructions----------------------- | |
/* | |
To add a sermon, use the following format: | |
sermonList.addSermon(service, date, title, passage, speaker, audio number); | |
Example: | |
sermonList.push(new Sermon("Morning", "05/24/2009", "The Wiles of the Devil", "Ephesians 6:10-13", "Steve Jennings", "524092044591")); | |
If you want to leave out the audio number, use empty quotes (""). | |
Double quotes and backslashes must be escaped by a backslash | |
Example: "\"C:\\Windows\"" | |
Each statement must be on one line. | |
Use html escape characters like – or their numerical equivalents. | |
Sermons will be automatically sorted, so the order of the insertion statements is irrelevant. | |
Make sure proper spacing and capitalization are followed. The sorting may not work with expressions like "1John" or "proverbs" | |
Books of the Bible must be spelled out; no abbreviations. | |
*/ | |
//---------------Start of Editable Section--------------- | |
var sermonList = new Array(); | |
var serviceList = ["Morning", "Evening"]; | |
var sortColumn = "Date"; // Service, Date, Title, Passage, Speaker, Audio | |
var sortDescending = true; | |
sermonList.push(new Sermon("Morning", "4/22/2012", "Zeal for Your House Will Consume Me", "John 2:13-22", "Jesse Pickett", "42312720186")); | |
sermonList.push(new Sermon("Evening", "4/15/2012", "The Never-Ending Struggle to Keep the Water Fresh", "Genesis 26", "Steve Jennings", "41612619188")); | |
sermonList.push(new Sermon("Morning", "4/15/2012", "Will Only a Few Be Saved?", "Luke 13:22-30", "Steve Jennings", "41612615464")); | |
sermonList.push(new Sermon("Evening", "4/8/2012", "Esau, a Profane Man", "Genesis 25:27-35", "Steve Jennings", "4912557178")); | |
sermonList.push(new Sermon("Morning", "4/8/2012", "Our Participation in Christ's Resurrection", "Colossians 2:6-15", "Steve Jennings", "4912553407")); | |
sermonList.push(new Sermon("Evening", "4/1/2012", "The Birth of Jacob", "Genesis 25:19-28", "Steve Jennings", "4212554264")); | |
sermonList.push(new Sermon("Morning", "4/1/2012", "Marching in Christ's Parade", "2 Corinthians 2:12-17", "Steve Jennings", "4212549433")); | |
sermonList.push(new Sermon("Morning", "3/25/2012", "Christ Speaks to Our Conscience", "Luke 13:10-21", "Steve Jennings", "32612631144")); | |
sermonList.push(new Sermon("Evening", "3/18/2012", "A Prayer in Advancing Age", "Psalm 71", "Steve Jennings", "31912617192")); | |
sermonList.push(new Sermon("Morning", "3/18/2012", "Pursuing an Experiential Knowledge of the Lord Christ", "2 Peter 1:1-11", "Steve Jennings", "31912613350")); | |
sermonList.push(new Sermon("Evening", "3/11/2012", "Balaam's End", "Numbers 24:25-25:3", "Steve Jennings", "3111221991")); | |
sermonList.push(new Sermon("Morning", "3/11/2012", "Repent or Perish", "Luke 13:1-9", "Steve Jennings", "31112216321")); | |
sermonList.push(new Sermon("Evening", "3/4/2012", "Balaam's Final Oracle:Messianic Star and Scepter", "Numbers 24:15-25", "Steve Jennings", "3512615521")); | |
sermonList.push(new Sermon("Morning", "3/4/2012", "I Did Not Come to Bring Peace", "Luke 12:49-59", "Steve Jennings", "3512611416")); | |
sermonList.push(new Sermon("Evening", "2/26/2012", "He Did Not Fail To Confess", "John 1:19-34", "Jesse Pickett", "22712023471")); | |
sermonList.push(new Sermon("Morning", "2/26/2012", "Are Some Sins More Serious Than Others?", "Luke 12:41-48", "Steve Jennings", "227120184710")); | |
sermonList.push(new Sermon("Evening", "2/19/2012", "Balaam's Third Oracle", "Numbers 24:1-11", "Steve Jennings", "22012619553")); | |
sermonList.push(new Sermon("Morning", "2/19/2012", "Waiting and Working", "Luke 12:35-46", "Steve Jennings", "22012614331")); | |
sermonList.push(new Sermon("Evening", "2/12/2012", "God Never Changes His Mind", "Numbers 23:13-26", "Steve Jennings", "212122058244")); | |
sermonList.push(new Sermon("Morning", "2/12/2012", "Why Do You Worry?", "Luke 12:22-34", "Steve Jennings", "21212205560")); | |
sermonList.push(new Sermon("Evening", "2/5/2012", "The Gospel of Ruth", "Ruth 1", "Dr. O. Palmer Robertson", "26122143211")); | |
sermonList.push(new Sermon("Morning", "2/5/2012", "Can a Rich Man Be a Fool?", "Luke 12:13-21", "Steve Jennings", "26122138183")); | |
sermonList.push(new Sermon("Evening", "1/29/2012", "Balaam’s First Oracle", "Numbers 23:1-12", "Steve Jennings", "13012618271")); | |
sermonList.push(new Sermon("Morning", "1/29/2012", "Jesus Brings New Wine", "John 2:1-12", "Jesse Pickett", "13012614500")); | |
sermonList.push(new Sermon("Evening", "1/22/2012", "The First Word", "John 1:1-18", "Jesse Pickett", "122122024166")); | |
sermonList.push(new Sermon("Morning", "1/22/2012", "Standing for the Right to Life", "Exodus 1:8-22; Hebrews 11:23", "Steve Jennings", "12212202305")); | |
sermonList.push(new Sermon("Evening", "1/15/2012", "I Shall Not Be Afraid", "Psalm 56", "Steve Jennings", "115122046505")); | |
sermonList.push(new Sermon("Morning", "1/15/2012", "The Security of Fearing God", "Luke 12:1-12", "Steve Jennings", "11512204444")); | |
sermonList.push(new Sermon("Evening", "1/8/2012", "The Story of Balaam, Part III", "Numbers 22:31-41", "Steve Jennings", "1812219347")); | |
sermonList.push(new Sermon("Morning", "1/8/2012", "What Is So Bad About Hypocrisy?", "Luke 11:37–54", "Steve Jennings", "1812215204")); | |
sermonList.push(new Sermon("Morning", "1/1/2012", "Who Considers? Those Who Are Gaining Wisdom? The Peril of Short-Sightedness", "Psalm 90", "Steve Jennings", "111217215810")); | |
sermonList.push(new Sermon("Morning", "12/25/2011", "Jesus Christ, the Seed of David", "Psalm 110; Revelation 19:11-16", "Steve Jennings", "122511163123")); | |
sermonList.push(new Sermon("Evening", "12/24/2011", "A Christmas Eve Meditation", "Isaiah 9:1-7; Luke 2:1-20", "Steve Jennings", "1225111559559")); | |
sermonList.push(new Sermon("Evening", "12/18/2011", "When God Allowed What He Had Previously Forbidden", "2 Peter 2:14-16; Numbers 22:15-31", "Steve Jennings", "121911421403")); | |
sermonList.push(new Sermon("Morning", "12/18/2011", "Jesus Christ, the Seed of Abraham", "Hebrews 11:8-19", "Steve Jennings", "12191141481")); | |
sermonList.push(new Sermon("Evening", "12/11/2011", "Remember Balaam, Part I", "Micah 6:5; 2 Peter 2:15; Numbers 22:1-14", "Steve Jennings", "12121165323")); | |
sermonList.push(new Sermon("Morning", "12/11/2011", "Jesus Christ, the 'Seed' of the Woman", "Genesis 3:15", "Steve Jennings", "12121160522")); | |
sermonList.push(new Sermon("Morning", "12/4/2011", "Salute Your Leaders", "Hebrews 13:7,17,24,8", "Steve Jennings", "12511627513")); | |
sermonList.push(new Sermon("Evening", "11/27/2011", "Christ Cleanses the Temple", "John 2:13-22", "Jesse Pickett", "1127112148346")); | |
sermonList.push(new Sermon("Morning", "11/27/2011", "Noah Built an Ark and an Altar", "Genesis 8:13-22; Hebrews 11:7", "Steve Jennings", "112711214500")); | |
sermonList.push(new Sermon("Evening", "11/20/2011", "Jesus as Kingly Bridegroom", "Psalm 45", "Steve Jennings", "11231171133")); | |
sermonList.push(new Sermon("Morning", "11/20/2011", "What Is Wrong With Seeking a Sign?", "Luke 11:29-32", "Steve Jennings", "11231176532")); | |
sermonList.push(new Sermon("Evening", "11/13/2011", "The Wonderful Tree", "Hosea 14:1-9", "Steve Jennings", "11141167153")); | |
sermonList.push(new Sermon("Morning", "11/13/2011", "The Shocking Alternative", "Luke 11:14-28", "Steve Jennings", "11141166142")); | |
sermonList.push(new Sermon("Evening", "11/06/2011", "Crossing the Jordan River", "Joshua 3-4", "Jesse Pickett", "1171164058")); | |
sermonList.push(new Sermon("Morning", "11/06/2011", "Do This In Remembrance of Me", "1 Corinthians 11:23-26", "Steve Jennings", "11711636246")); | |
sermonList.push(new Sermon("Evening", "10/30/2011", "Death, I Will Be Your Death", "Hosea 13:9-16", "Steve Jennings", "113111836472")); | |
sermonList.push(new Sermon("Morning", "10/30/2011", "Lessons in Prayer", "Luke 11:1-13", "Steve Jennings", "113111834391")); | |
sermonList.push(new Sermon("Evening", "10/23/2011", "Satisfied, Proud and Forgetful", "Hosea 12:6-13:8", "Steve Jennings", "1023112039571")); | |
sermonList.push(new Sermon("Morning", "10/23/2011", "Gaining Something That Can Never Be Lost", "Luke 10:38-42; Psalm 119:129-136", "Steve Jennings", "1023112034290")); | |
sermonList.push(new Sermon("Evening", "10/16/2011", "Salvation Comes to the House of the Harlot", "Joshua 2:1-24", "Jesse Pickett", "101711611514")); | |
sermonList.push(new Sermon("Morning", "10/16/2011", "Love for Your Neighbor Illustrated", "Luke 10:25-37", "Steve Jennings", "10171167202")); | |
sermonList.push(new Sermon("Evening", "10/09/2011", "Do Nations Break Covenants?", "Hosea 11:12-12:11", "Steve Jennings", "109112248129")); | |
sermonList.push(new Sermon("Morning", "10/09/2011", "The Display of a Sovereign Salvation is Cause for Great Rejoicing", "Luke 10:21-24", "Steve Jennings", "109112246427")); | |
sermonList.push(new Sermon("Evening", "10/02/2011", "Recognizing What Is Important", "Philippians 1:9-11", "Donald Cobb", "10211232533")); | |
sermonList.push(new Sermon("Morning", "10/02/2011", "Behavior Befitting the Heralds of Peace", "Luke 10:1-20", "Steve Jennings", "102112142567")); | |
sermonList.push(new Sermon("Evening", "09/25/2011", "But How Can I Give You Up?", "Hosea 11:8-11", "Steve Jennings", "925112056140")); | |
sermonList.push(new Sermon("Morning", "09/25/2011", "His Face Set Like Flint", "Luke 9:37-62", "Steve Jennings", "925112050440")); | |
sermonList.push(new Sermon("Evening", "09/18/2011", "How Excellent is Your Lovingkindness", "Psalm 36", "Steve Jennings", "9191113136")); | |
sermonList.push(new Sermon("Morning", "09/18/2011", "Eye-Witness of His Majesty", "Luke 9:28-36", "Steve Jennings", "91911126323")); | |
sermonList.push(new Sermon("Evening", "09/11/2011", "The Temple-Building Son of David", "Psalm 132", "Jesse Pickett", "911112038537")); | |
sermonList.push(new Sermon("Morning", "09/11/2011", "The Seriousness of Sin", "Mark 9:43-50", "Jesse Pickett", "911112035113")); | |
sermonList.push(new Sermon("Evening", "09/04/2011", "God Grieving for His Prodigal Son", "Hosea 11:1-7", "Steve Jennings", "951151841")); | |
sermonList.push(new Sermon("Morning", "09/04/2011", "Choosing to Live by Dying", "Luke 9:23-27", "Steve Jennings", "9511513250")); | |
sermonList.push(new Sermon("Evening", "08/28/2011", "Preparing to Enter the Promised Land", "Joshua 1", "Jesse Pickett", "828112046279")); | |
sermonList.push(new Sermon("Morning", "08/28/2011", "The Church's One Foundation", "Luke 9:18-22", "Steve Jennings", "828112043332")); | |
sermonList.push(new Sermon("Evening", "08/21/2011", "Remember Not the Sins of My Youth", "Psalm 25", "Steve Jennings", "8221162624")); | |
sermonList.push(new Sermon("Morning", "08/21/2011", "Seeking First His Kingdom", "Luke 9:10-17", "Steve Jennings", "82211622573")); | |
sermonList.push(new Sermon("Evening", "08/14/2011", "An Example of the Principle of Responsibility", "Hosea 10:11–15", "Steve Jennings", "81511541201")); | |
sermonList.push(new Sermon("Morning", "08/14/2011", "Rejoice, the LORD is King", "Luke 9:1-11", "Steve Jennings", "81511537330")); | |
sermonList.push(new Sermon("Evening", "08/07/2011", "The War Against the Children of Iniquity", "Hosea 10:1–10", "Steve Jennings", "8711212377")); | |
sermonList.push(new Sermon("Morning", "08/07/2011", "And Her Spirit Returned", "Luke 8:49-56", "Steve Jennings", "87112118337")); | |
sermonList.push(new Sermon("Evening", "07/31/2011", "The Serious Consequences of Sexual Misbehavior", "Hosea 9:9–17", "Steve Jennings", "811162203")); | |
sermonList.push(new Sermon("Morning", "07/31/2011", "Faith Is Going to Jesus", "Luke 8:41-48", "Steve Jennings", "8111554150")); | |
sermonList.push(new Sermon("Evening", "07/24/2011", "The Church Militant: Strong and Courageous", "Joshua 1", "Jesse Pickett", "7251155491")); | |
sermonList.push(new Sermon("Morning", "07/24/2011", "Christ's Interests or ...?", "Luke 8:26-39", "Steve Jennings", "7251150150")); | |
sermonList.push(new Sermon("Evening", "07/17/2011", "He Made the Storm Be Still", "Psalm 107", "Steve Jennings", "717112029403")); | |
sermonList.push(new Sermon("Morning", "07/17/2011", "Two Kinds of Fear", "Luke 8:22-25", "Steve Jennings", "717112028352")); | |
sermonList.push(new Sermon("Evening", "07/10/2011", "The Prophet Is the Watchman", "Hosea 9:1-9", "Steve Jennings", "71111512183")); | |
sermonList.push(new Sermon("Morning", "07/10/2011", "Whatever Happened to..?", "Luke 8:1-21", "Steve Jennings", "7111157130")); | |
sermonList.push(new Sermon("Morning", "07/03/2011", "He Who Is Forgiven Little, Loves Little", "Luke 7:36-50", "Steve Jennings", "7411620266")); | |
sermonList.push(new Sermon("Evening", "06/26/2011", "They Are Like a Treacherous Bow", "Hosea 7:11-16", "Steve Jennings", "6271155371")); | |
sermonList.push(new Sermon("Morning", "06/26/2011", "Every Wise Choice Will Be Vindicated", "Luke 7:31-35; 1 Corinthians 1:18-25", "Steve Jennings", "6271151190")); | |
sermonList.push(new Sermon("Evening", "06/19/2011", "He Shall Reign Forever and Ever", "Revelation 11:15-19", "Jesse Pickett", "62011550301")); | |
sermonList.push(new Sermon("Morning", "06/19/2011", "The Revelation That Makes Great", "Luke 7:24-30", "Steve Jennings", "6201154670")); | |
sermonList.push(new Sermon("Evening", "06/12/2011", "Be Fervent in Spirit Serving the Lord", "Hosea 7:1-7", "Steve Jennings", "613111932120")); | |
sermonList.push(new Sermon("Morning", "06/12/2011", "Ashamed of Christ?", "Luke 7:18-23", "Steve Jennings", "613111922388")); | |
sermonList.push(new Sermon("Evening", "06/05/2011", "A Fickle Sentimentality", "Hosea 6:4-11", "Steve Jennings", "6511213112")); | |
sermonList.push(new Sermon("Morning", "06/05/2011", "Contemplating Our Resurrection", "Luke 7:11-17", "Steve Jennings", "65112127497")); | |
sermonList.push(new Sermon("Evening", "05/29/2011", "Openly Acknowledged and Acquitted", "Revelation 11:3-14", "Jesse Pickett", "529112110550")); | |
sermonList.push(new Sermon("Morning", "05/29/2011", "I Have Not Found Such Great Faith", "Luke 7:1-10; Matthew 8:5-13", "Steve Jennings", "52911219309")); | |
sermonList.push(new Sermon("Evening", "05/22/2011", "Let Us Press On to Know the LORD", "Hosea 6:1-3", "Steve Jennings", "52211204297")); | |
sermonList.push(new Sermon("Morning", "05/22/2011", "Your Work of Fruit-Bearing and House-Building", "Luke 6:43-49; Ezekiel 33:30-33", "Steve Jennings", "522112036410")); | |
sermonList.push(new Sermon("Evening", "05/15/2011", "The LORD is a Lion", "Hosea 5:8-15", "Steve Jennings", "515112116346")); | |
sermonList.push(new Sermon("Morning", "05/15/2011", "Avoiding a Judgmental Attitude in Our Relationships with Others", "Luke 6:37-42", "Steve Jennings", "51511211312")); | |
sermonList.push(new Sermon("Evening", "05/08/2011", "A Snapshot of the Church on Earth", "Numbers 1", "Jesse Pickett", "5811205714")); | |
sermonList.push(new Sermon("Morning", "05/08/2011", "An Elect Remnant", "Romans 9:29", "Jesse Pickett", "58112053182")); | |
sermonList.push(new Sermon("Evening", "05/01/2011", "Seek and You Shall NOT Find", "Hosea 5:1-7", "Steve Jennings", "5211622441")); | |
sermonList.push(new Sermon("Morning", "05/01/2011", "Loving Our Enemies", "Luke 6:27-36", "Steve Jennings", "5211617330")); | |
sermonList.push(new Sermon("Evening", "04/24/2011", "God's Witnesses: Persecuted but Protected", "Revelation 11:1-3", "Jesse Pickett", "424112033810")); | |
sermonList.push(new Sermon("Morning", "04/24/2011", "How Does Jesus Make His Appearance?", "Luke 24:13-49", "Steve Jennings", "424112030199")); | |
sermonList.push(new Sermon("Evening", "04/17/2011", "They Hated Me without Cause", "Psalm 35", "Steve Jennings", "417112048478")); | |
sermonList.push(new Sermon("Morning", "04/17/2011", "A Wretched Choice", "Luke 6:20-26", "Steve Jennings", "417112047447")); | |
sermonList.push(new Sermon("Evening", "04/10/2011", "Ephraim is Joined to Idols; Let Him Alone", "Hosea 4:1-19", "Steve Jennings", "410112115357")); | |
sermonList.push(new Sermon("Morning", "04/10/2011", "The Cost of Desiring God", "Luke 6:20-26", "Steve Jennings", "410112110162")); | |
sermonList.push(new Sermon("Evening", "04/03/2011", "My People Are Destroyed for Lack of Knowledge", "Hosea 4:1-19", "Steve Jennings", "4411250284")); | |
sermonList.push(new Sermon("Morning", "04/03/2011", "Blessed Are You Who Hunger", "Luke 6:20-26", "Steve Jennings", "4411246432")); | |
sermonList.push(new Sermon("Evening", "03/27/2011", "Hosea, Go Get Your Wife", "Hosea 3:1-5", "Steve Jennings", "327112113311")); | |
sermonList.push(new Sermon("Morning", "03/27/2011", "Poor and Rich-Blessing and Woe", "Luke 6:20-26", "Steve Jennings", "32711219281")); | |
sermonList.push(new Sermon("Evening", "03/20/2011", "The Excellence of God Merits Praise", "Psalm 8", "Jesse Pickett", "320112144143")); | |
sermonList.push(new Sermon("Morning", "03/20/2011", "The Providence of God in the Ministry of the Lord Christ", "Luke 6:1-11; Hebrews 1:1-3", "Steve Jennings", "320112140318")); | |
sermonList.push(new Sermon("Evening", "03/13/2011", "God Makes Known the Riches of His Glory To the Vessels of His Mercy", "Hosea 2:14-23; Romans 9", "Steve Jennings", "313112044416")); | |
sermonList.push(new Sermon("Morning", "03/13/2011", "I Did Not Come for the Righteous", "Luke 5:27-32", "Steve Jennings", "313112041160")); | |
sermonList.push(new Sermon("Evening", "03/06/2011", "My Wife Has Left Me!", "Hosea 2:2-16", "Steve Jennings", "3711523364")); | |
sermonList.push(new Sermon("Morning", "03/06/2011", "Worship Comes Before Service", "Isaiah 6:1-7; Luke 5:1-11", "Steve Jennings", "3711520432")); | |
sermonList.push(new Sermon("Morning", "02/27/2011", "His Word Possessed Authority", "Luke 4:31-44", "Steve Jennings", "227112117333")); | |
sermonList.push(new Sermon("Evening", "02/20/2011", "Distinguish Me by Your Covenant Love", "Psalm 17", "Steve Jennings", "220112052315")); | |
sermonList.push(new Sermon("Morning", "02/20/2011", "Does Prejudice Keep You from the Truth?", "Luke 4:16-30", "Steve Jennings", "220112043463")); | |
sermonList.push(new Sermon("Evening", "02/13/2011", "Sons of the Living God", "Hosea 1:10-2:1", "Steve Jennings", "2131120541010")); | |
sermonList.push(new Sermon("Morning", "02/13/2011", "The Anatomy of Temptation", "Luke 4:1-15", "Steve Jennings", "213112051107")); | |
sermonList.push(new Sermon("Evening", "02/06/2011", "Hosea and a Portrait of the Christian's God", "Hosea 1:1-2:1", "Steve Jennings", "26112039405")); | |
sermonList.push(new Sermon("Morning", "02/06/2011", "Jesus, Seed of the Woman", "Luke 3:23-38", "Steve Jennings", "26112032481")); | |
sermonList.push(new Sermon("Evening", "01/30/2011", "Our Supreme and Sufficient Savior", "Colossians 2:1-10", "Jesse Pickett", "1301121259")); | |
sermonList.push(new Sermon("Morning", "01/30/2011", "The Baptism of Jesus", "Luke 3:18-22", "Steve Jennings", "13011210186")); | |
sermonList.push(new Sermon("Evening", "01/23/2011", "Lessons from the Mission Field", "Matthew 28:19-20", "Clive Stephenson", "1241159151")); | |
sermonList.push(new Sermon("Morning", "01/23/2011", "God Hates the violence of Abortion", "Psalm 11", "Steve Jennings", "1241152420")); | |
sermonList.push(new Sermon("Evening", "01/16/2011", "Come Up Here, Elijah!", "2 Kings 2:1-14", "Steve Jennings", "116112041392")); | |
sermonList.push(new Sermon("Morning", "01/16/2011", "Flee From the Wrath to Come", "Luke 3:1-18", "Steve Jennings", "116112038380")); | |
sermonList.push(new Sermon("Evening", "01/09/2011", "The King Changes: God Does Not", "2 Kings 1:1-16", "Steve Jennings", "11011549422")); | |
sermonList.push(new Sermon("Morning", "01/09/2011", "And Jesus Grew ...", "Luke 2:41-52", "Steve Jennings", "11011546280")); | |
sermonList.push(new Sermon("Evening", "01/02/2011", "The Death of Ahab and the Doctrine of Providence Confirmed", "1 Kings 22:29-40", "Steve Jennings", "12112136357")); | |
sermonList.push(new Sermon("Morning", "01/02/2011", "Need to Start Again?", "Genesis 34:1-35:15", "Steve Jennings", "12112132222")); | |
sermonList.push(new Sermon("Evening", "12/26/2010", "Complete in Him (Part 1)", "Colossians 1:28-2:10", "Jesse Pickett", "122610214314")); | |
sermonList.push(new Sermon("Morning", "12/26/2010", "The Angel's Song", "Luke 2:1-20", "Steve Jennings", "122610213233")); | |
sermonList.push(new Sermon("Evening", "12/19/2010", "The Death of Ahab (Part 1)", "1 Kings 22:1-28", "Steve Jennings", "122010528485")); | |
sermonList.push(new Sermon("Morning", "12/19/2010", "What Kind of Salvation?", "Luke 1:67-79", "Steve Jennings", "122010522494")); | |
sermonList.push(new Sermon("Evening", "12/12/2010", "Ahab, A Model of Repentance?", "1 Kings 21:17-29", "Steve Jennings", "12131053591")); | |
sermonList.push(new Sermon("Morning", "12/12/2010", "He Has Remembered His Mercy", "Luke 1:39-56; Psalm 123", "Steve Jennings", "12131052300")); | |
sermonList.push(new Sermon("Evening", "12/5/2010", "The Story of Naboth's Vineyard", "1 Kings 21:1-16", "Steve Jennings", "126106335510")); | |
sermonList.push(new Sermon("Morning", "12/5/2010", "The Humility of the Incarnation", "Philippians 2:5-8", "Steve Jennings", "12610632278")); | |
sermonList.push(new Sermon("Evening", "11/28/2010", "God’s Sovereign Majesty and the Giant Sea Monster", "Job 41:1–11", "Jesse Pickett", "121102030511")); | |
sermonList.push(new Sermon("Morning", "11/28/2010", "Full or Partial Salvation?", "Luke 17:11-19", "Steve Jennings", "121102029110")); | |
sermonList.push(new Sermon("Evening", "11/21/2010", "Biblical Discernment", "Genesis", "Mike Riddle", "112210634167")); | |
sermonList.push(new Sermon("Morning", "11/21/2010", "The Divine-Human Drama of Redemption", "Luke 1:26-38", "Steve Jennings", "112210628313")); | |
sermonList.push(new Sermon("Evening", "11/14/2010", "Do Not Spare What Is Devoted to Destruction", "1 Kings 20", "Steve Jennings", "111510519441")); | |
sermonList.push(new Sermon("Morning", "11/14/2010", "Prophetic Preparation for Christ's Coming", "Luke 1:5-25", "Steve Jennings", "111510515400")); | |
sermonList.push(new Sermon("Evening", "11/7/2010", "The Call of Elisha", "1 Kings 19:19-21", "Steve Jennings", "11810632347")); | |
sermonList.push(new Sermon("Morning", "11/7/2010", "Can Anything Be Known with Certainty?", "Luke 1:1-4", "Steve Jennings", "1181062976")); | |
sermonList.push(new Sermon("Evening", "10/31/2010", "Remember That He Has Remembered", "Psalm 105", "Steve Jennings", "1031102158122")); | |
sermonList.push(new Sermon("Morning", "10/31/2010", "Guard the Good Deposit - A Message for Reformation Sunday", "2 Timothy 1:13,14", "Steve Jennings", "10311021525110")); | |
sermonList.push(new Sermon("Evening", "10/24/2010", "Going in the Way of Cain", "Genesis 4:5-15", "Jesse Pickett", "10251061466")); | |
sermonList.push(new Sermon("Morning", "10/24/2010", "Resting in the Day of Trouble", "Habakkuk 2:1-20", "Jesse Pickett", "10251055595")); | |
sermonList.push(new Sermon("Evening", "10/17/2010", "The Saviour of the World", "John 4:27-42", "Jesse Pickett", "101810556392")); | |
sermonList.push(new Sermon("Morning", "10/17/2010", "Unbelievable News", "Habakkuk 1:1-12", "Jesse Pickett", "101810553330")); | |
sermonList.push(new Sermon("Evening", "10/10/2010", "The Still Small Voice", "1 Kings 19:8-18", "Steve Jennings", "101110654278")); | |
sermonList.push(new Sermon("Morning", "10/10/2010", "The Love of Christ Constrains Us", "2 Corinthians 5:1-15", "Steve Jennings", "101110651167")); | |
sermonList.push(new Sermon("Evening", "10/03/2010", "Ministers Need Angelic Ministry", "1 Kings 19:1-8", "Steve Jennings", "10410633397")); | |
sermonList.push(new Sermon("Morning", "10/03/2010", "No Boasting But in the Cross", "Galatians 6:11-18", "Steve Jennings", "1041062731")); | |
sermonList.push(new Sermon("Evening", "09/26/2010", "The First Gospel Martyr", "Genesis 4:1-5", "Jesse Picket", "92710612242")); | |
sermonList.push(new Sermon("Morning", "09/26/2010", "The Principle of Response-Ability, Sowing and Reaping", "Galatians 6:1-10", "Steve Jennings", "9271068401")); | |
sermonList.push(new Sermon("Evening", "09/19/2010", "The Judges on Trial", "Psalm 82", "Steve Jennings", "92010631152")); | |
sermonList.push(new Sermon("Morning", "09/19/2010", "The Fruit of the Spirit is Self-Control", "Galatians 5:22-26", "Steve Jennings", "92010630120")); | |
sermonList.push(new Sermon("Evening", "09/12/2010", "Elijah in Flight", "1 Kings 19:1-9", "Steve Jennings", "91210217468")); | |
sermonList.push(new Sermon("Morning", "09/12/2010", "The Fruit of the Spirit is Gentleness", "Galatians 5:22-25; Mark10:13-16", "Steve Jennings", "9121021480")); | |
sermonList.push(new Sermon("Evening", "09/05/2010", "The Drought Ends", "1 Kings 18:36-46", "Steve Jennings", "961068113")); | |
sermonList.push(new Sermon("Morning", "09/05/2010", "The Fruit of the Spirit is Faithfulness", "Galatians 5:22-26", "Steve Jennings", "961065172")); | |
sermonList.push(new Sermon("Evening", "08/29/2010", "The Fire of the Lord Fell", "1 Kings 18:30-40", "Steve Jennings", "83010558250")); | |
sermonList.push(new Sermon("Morning", "08/29/2010", "The Fruit of the Spirit is Goodness", "Galatians 5:22-25", "Steve Jennings", "830105552710")); | |
sermonList.push(new Sermon("Evening", "08/22/2010", "The Second Coming, Part 2", "2 Peter 3:10-18", "Jesse Picket", "82210219225")); | |
sermonList.push(new Sermon("Morning", "08/22/2010", "The Fruit of the Spirit is Kindness", "Galatians 5:22-23", "Steve Jennings", "82210217464")); | |
sermonList.push(new Sermon("Evening", "08/15/2010", "The Battle of Mt. Carmel, Part I", "1 Kings 18:17-29", "Steve Jennings", "8161063442")); | |
sermonList.push(new Sermon("Morning", "08/15/2010", "The Fruit of the Spirit is Patience", "Galatians 5:16-26", "Steve Jennings", "81610630181")); | |
sermonList.push(new Sermon("Evening", "08/08/2010", "Go Show Yourself to Ahab", "1 Kings 18:1-19", "Steve Jennings", "881021552910")); | |
sermonList.push(new Sermon("Morning", "08/08/2010", "The Fruit of the Spirit is Peace", "Galatians 5:16-26", "Steve Jennings", "88102152458")); | |
sermonList.push(new Sermon("Evening", "08/01/2010", "Too Good to Be True?", "1 Kings 17:17-24", "Steve Jennings", "83101922497")); | |
sermonList.push(new Sermon("Morning", "08/01/2010", "The Fruit of the Spirit is Joy", "Galatians 5:16-26", "Steve Jennings", "83101919235")); | |
sermonList.push(new Sermon("Evening", "07/25/2010", "The Second Coming", "2 Peter 3:1-9", "Jesse Pickett", "72610644417")); | |
sermonList.push(new Sermon("Morning", "07/25/2010", "The Fruit of the Spirit is Love", "Galatians 5:16-26", "Steve Jennings", "72610641442")); | |
sermonList.push(new Sermon("Evening", "07/18/2010", "Fresh and Flourishing", "Psalm 92", "Steve Jennings", "71910612281")); | |
sermonList.push(new Sermon("Morning", "07/18/2010", "Life in the Spirit - The Beauty of Fruit-Bearing", "Galatians 5:16-26", "Steve Jennings", "71910692310")); | |
sermonList.push(new Sermon("Evening", "07/11/2010", "Elijah at Zarephath", "1 Kings 17:8-16", "Steve Jennings", "71210515103")); | |
sermonList.push(new Sermon("Morning", "07/11/2010", "Life in the Spirit - A Fight", "Galatians 5:16-26; Romans 7:15-25", "Steve Jennings", "7121051001")); | |
sermonList.push(new Sermon("Evening", "07/04/2010", "Elijah at the Brook (Part 2)", "1 Kings 17:1-6", "Steve Jennings", "75101714263")); | |
sermonList.push(new Sermon("Morning", "07/04/2010", "Life in the Spirit - Freedom to Serve One Another", "Galatians 5:13-15", "Steve Jennings", "75101712560")); | |
sermonList.push(new Sermon("Evening", "06/27/2010", "God's Preserving Grace", "Daniel 3", "Jesse Pickett", "627102153100")); | |
sermonList.push(new Sermon("Morning", "06/27/2010", "Life in the Spirit - The Christian's Life is One of Freedom", "Galatians 5:1-6", "Steve Jennings", "62710214668")); | |
sermonList.push(new Sermon("Evening", "06/20/2010", "Who Will Stand Up for Me Against the Wicked?", "Psalm 94", "Steve Jennings", "62110619455")); | |
sermonList.push(new Sermon("Morning", "06/20/2010", "A Tale of Two Cities - Who Is Your Mother?", "Galatians 4:21-31; Isaiah 54:1-5", "Steve Jennings", "62110616134")); | |
sermonList.push(new Sermon("Evening", "06/13/2010", "Elijah at the Brook (Part 1)", "1 Kings 17:1-7", "Steve Jennings", "6141062662")); | |
sermonList.push(new Sermon("Morning", "06/13/2010", "Abraham's Offspring", "Galatians 3:15-29", "Steve Jennings", "6141062130")); | |
sermonList.push(new Sermon("Evening", "06/06/2010", "I Will Send Elijah", "1 Kings 17:1-7", "Steve Jennings", "6710618351")); | |
sermonList.push(new Sermon("Morning", "06/06/2010", "When Saints Become Stumbling Blocks", "Galatians 2:15-3:7", "Steve Jennings", "671061760")); | |
sermonList.push(new Sermon("Evening", "05/30/2010", "Here Shall Be the House of the Lord God", "2 Samuel 24:15-25", "Steve Jennings", "6110633205")); | |
sermonList.push(new Sermon("Morning", "05/30/2010", "The Necessity of Wise Confrontation", "Galatians 2:1-10; 6:11-13", "Steve Jennings", "6110631423")); | |
sermonList.push(new Sermon("Evening", "05/23/2010", "Killing the Dead Man", "Mark 9:43-50", "Jesse Pickett", "6110629362")); | |
sermonList.push(new Sermon("Morning", "05/23/2010", "When the Gospel Is No Gospel", "Galatians 1:6-9", "Steve Jennings", "6110627561")); | |
sermonList.push(new Sermon("Evening", "05/16/2010", "Great Is Thy Faithfulness?", "Psalm 89", "Steve Jennings", "5171061222")); | |
sermonList.push(new Sermon("Morning", "05/16/2010", "Paul. the Man - A Pattern of Grace for the Church", "Galatians 1:11-23", "Steve Jennings", "5171060141")); | |
sermonList.push(new Sermon("Evening", "05/09/2010", "Let Us Fall into the Hand of the Lord, for His Mercy is Great", "2 Samuel 24:10-17", "Steve Jennings", "510106355510")); | |
sermonList.push(new Sermon("Morning", "05/09/2010", "Paul's Apostleship & Authority", "Galatians 1:1,11,12", "Steve Jennings", "51010631246")); | |
sermonList.push(new Sermon("Evening", "05/02/2010", "Consider the Goodness and Severity of God", "2 Samuel 24:1-10", "Steve Jennings", "521021474110")); | |
sermonList.push(new Sermon("Morning", "05/02/2010", "Introduction to Themes from Galatians", "Galatians 1:1-7; Romans 7:1-4", "Steve Jennings", "52102144198")); | |
sermonList.push(new Sermon("Evening", "04/25/2010", "Kiss the Son", "Psalm 2", "Jesse Pickett", "425102052203")); | |
sermonList.push(new Sermon("Morning", "04/25/2010", "The Perfect Sacrifice", "Hebrews 10:1-10", "Dan Clay", "425102047308")); | |
sermonList.push(new Sermon("Evening", "04/18/2010", "The Lord Our Peace", "Philippians 2:5-11", "Jesse Pickett", "418102026156")); | |
sermonList.push(new Sermon("Morning", "04/18/2010", "Resting and Living in Jesus", "Colossians 1:9-23", "Tommy Park", "418102019411")); | |
sermonList.push(new Sermon("Evening", "04/11/2010", "A Noted Illustration of Devoted Loyalty", "2 Samuel 23:13-17", "Steve Jennings", "41210654277")); | |
sermonList.push(new Sermon("Morning", "04/11/2010", "Who Is the King of Glory?", "Luke 24:44-53", "Steve Jennings", "41210648424")); | |
sermonList.push(new Sermon("Evening", "04/04/2010", "David's Mighty Men", "2 Samuel 23:8-39", "Steve Jennings", "44102044333")); | |
sermonList.push(new Sermon("Morning", "04/04/2010", "I Go to Prepare a Place for You", "John 13:31-14:4", "Steve Jennings", "4410203990")); | |
sermonList.push(new Sermon("Evening", "03/28/2010", "David's Last Song", "2 Samuel 23:1-7", "Steve Jennings", "3291062281")); | |
sermonList.push(new Sermon("Morning", "03/28/2010", "On Trial with Christ", "John 18:19-23; John 19:16-22", "Steve Jennings", "32910557300")); | |
sermonList.push(new Sermon("Evening", "03/21/2010", "My God, My Refuge", "2 Samuel 22:1-51; Psalm 18", "Steve Jennings", "32210618136")); | |
sermonList.push(new Sermon("Morning", "03/21/2010", "Come Unto Me", "Matthew 11:25-30", "Steve Jennings", "32210612255")); | |
sermonList.push(new Sermon("Evening", "03/14/2010", "Facing the Giants", "2 Samuel 21:15-32", "Steve Jennings", "31510639472")); | |
sermonList.push(new Sermon("Morning", "03/14/2010", "A Transforming Glory", "Exodus 34:29-35", "Steve Jennings", "315106341810")); | |
sermonList.push(new Sermon("Evening", "03/07/2010", "The God of Justice", "2 Samuel 21:1-14", "Steve Jennings", "3810714481")); | |
sermonList.push(new Sermon("Morning", "03/07/2010", "The Obedience of Faith", "Exodus 34:10-28", "Steve Jennings", "381079298")); | |
sermonList.push(new Sermon("Evening", "02/28/2010", "Wisdom Remembered", "2 Samuel 20:1-26; Ecclesiates 9:13-18", "Steve Jennings", "31106173810")); | |
sermonList.push(new Sermon("Morning", "02/28/2010", "Children of God, Heirs of the World", "Exodus 34:9", "Steve Jennings", "311069244")); | |
sermonList.push(new Sermon("Evening", "02/21/2010", "Revive Us and We Will Call Upon Your Name", "Psalm 80", "Steve Jennings", "22210623470")); | |
sermonList.push(new Sermon("Morning", "02/21/2010", "New Stone Tablets, Same Perfect Law, and More Grace", "Exodus 34:1-9", "Steve Jennings", "22210617810")); | |
sermonList.push(new Sermon("Evening", "02/14/2010", "Lessons from Two Sons", "Isaiah 8:1-8", "Jesse Pickett", "21510714336")); | |
sermonList.push(new Sermon("Morning", "02/14/2010", "Show Me Thy Glory", "Exodus 33:12-23", "Steve Jennings", "21510711293")); | |
sermonList.push(new Sermon("Evening", "02/07/2010", "Four Men Waiting for the King's Return", "2 Samuel 19:8-40", "Steve Jennings", "281079390")); | |
sermonList.push(new Sermon("Morning", "02/07/2010", "Will God Indeed Dwell with Men?", "Exodus 33:1-11", "Steve Jennings", "281075310")); | |
sermonList.push(new Sermon("Evening", "01/31/2010", "Inordinate Grief", "2 Samuel 18:33-19:8", "Steve Jennings", "2110453171")); | |
sermonList.push(new Sermon("Morning", "01/31/2010", "Viewing the Present through the Lens of the Past", "Exodus 32:21-35", "Steve Jennings", "2110451470")); | |
sermonList.push(new Sermon("Evening", "01/24/2010", "Running with a Complete Message", "2 Samuel 18:9-33", "Steve Jennings", "12610614241")); | |
sermonList.push(new Sermon("Morning", "01/24/2010", "Being Created in the Image of God, Human Life is Sacred", "Genesis 1:24-28; 2:7", "Steve Jennings", "1261068480")); | |
sermonList.push(new Sermon("Evening", "01/17/2010", "I Shall Yet Praise Him", "Psalm 42", "Steve Jennings", "118108664")); | |
sermonList.push(new Sermon("Morning", "01/17/2010", "God's Immutability, Our Security", "Exodus 32:11-20", "Steve Jennings", "1181081250")); | |
sermonList.push(new Sermon("Evening", "01/10/2010", "The Death of Absalom", "2 Samuel 18:1-18", "Steve Jennings", "11110637590")); | |
sermonList.push(new Sermon("Morning", "01/10/2010", "An Early Worship War", "Exodus 32:1-10", "Steve Jennings", "11110632155")); | |
sermonList.push(new Sermon("Evening", "01/03/2010", "Going to the Other Side", "Mark 4:35-5:20", "Clive Stephenson", "1410657343")); | |
sermonList.push(new Sermon("Morning", "01/03/2010", "She Spoke of the Child", "Luke 2:36-38", "Steve Jennings", "1410650452")); | |
sermonList.push(new Sermon("Evening", "12/27/2009", "David's Escape Complete", "2 Samuel 17:15-29", "Steve Jennings", "123109558422")); | |
sermonList.push(new Sermon("Morning", "12/27/2009", "A Savior Arrives, A Saint Departs", "Luke 2:21-35", "Steve Jennings", "123109553110")); | |
sermonList.push(new Sermon("Evening", "12/20/2009", "Be Still, My Soul", "Psalm 131:1-3", "Steve Jennings", "12210978524")); | |
sermonList.push(new Sermon("Morning", "12/20/2009", "Jesus, the Carpenter's Son", "Matthew 2:13-23", "Steve Jennings", "12210972361")); | |
sermonList.push(new Sermon("Evening", "12/13/2009", "A Battle of Counselors", "2 Samuel 16:15-17:14", "Steve Jennings", "121609518561")); | |
sermonList.push(new Sermon("Morning", "12/13/2009", "The Power of God in Conquering the Idols of Our Hearts and Minds", "Jeremiah 16:10-21", "David Jones", "121609512360")); | |
sermonList.push(new Sermon("Evening", "12/6/2009", "The Meekness of David on Display", "2 Samuel 16:1-14", "Steve Jennings", "1270962127")); | |
sermonList.push(new Sermon("Morning", "12/6/2009", "It is Impossible for the Word of God to be Devoid of Power", "Luke 1:26-28", "Steve Jennings", "12709557583")); | |
sermonList.push(new Sermon("Evening", "11/29/2009", "Different Expressions of Loyalty to the King", "2 Samuel 15:18-37", "Steve Jennings", "12109549444")); | |
sermonList.push(new Sermon("Morning", "11/29/2009", "Angels - God's Ministering Spirits", "Hebrews 1:1-14", "Steve Jennings", "12109545242")); | |
sermonList.push(new Sermon("Evening", "11/22/2009", "The Selfishly Ambitious Deceives the Undiscerning Majority", "2 Samuel 15:1-17", "Steve Jennings", "11230972161")); | |
sermonList.push(new Sermon("Morning", "11/22/2009", "The Story of the Incarnation - Zechariah's Part", "Luke 1:1-23,74,75", "Steve Jennings", "112309658160")); | |
sermonList.push(new Sermon("Evening", "11/15/2009", "Show me a Sign of Your Favor", "Psalm 86", "Steve Jennings", "111809623571")); | |
sermonList.push(new Sermon("Morning", "11/15/2009", "The Story of the Incarnation - Isaiah's Part", "Matthew 1:18-23", "Steve Jennings", "111809614450")); | |
sermonList.push(new Sermon("Evening", "11/8/2009", "The Goodness of God", "Psalm 107", "Jesse Pickett", "11909527597")); | |
sermonList.push(new Sermon("Morning", "11/8/2009", "Holy God, Holy People", "Leviticus 24:1-9", "Jesse Pickett", "11909524374")); | |
sermonList.push(new Sermon("Evening", "11/1/2009", "The Manipulation of the King", "2 Samuel 14:1-33", "Steve Jennings", "11209640110")); | |
sermonList.push(new Sermon("Morning", "11/1/2009", "Should I Seek a Sign from God?", "2 Corinthians 11:26-32", "Steve Jennings", "112096384410")); | |
sermonList.push(new Sermon("Evening", "10/25/2009", "What NOT To Do under God's Chastening", "2 Samuel 13:23-39", "Steve Jennings", "102709617541")); | |
sermonList.push(new Sermon("Morning", "10/25/2009", "What Is a Pastor to Do?", "John 21:1-19", "Steve Jennings", "102709613110")); | |
sermonList.push(new Sermon("Evening", "10/18/2009", "He Rescued Me", "Psalm 18", "Jesse Pickett & Steve Jennings", "101809212626")); | |
sermonList.push(new Sermon("Morning", "10/18/2009", "God's Coming Judgement - the Harvest of the Earth", "Revelation 14:14-20", "Steve Jennings", "1018092120461")); | |
sermonList.push(new Sermon("Evening", "10/11/2009", "This Outrageous Folly", "2 Samuel 13:1-22", "Steve Jennings", "101209722230")); | |
sermonList.push(new Sermon("Morning", "10/11/2009", "Seeking Heaven's Rest", "Revelation 14:13", "Steve Jennings", "101209717502")); | |
sermonList.push(new Sermon("Evening", "10/04/2009", "Accepting God's Chastening Providence", "2 Samuel 12:15-23", "Steve Jennings", "105092044276")); | |
sermonList.push(new Sermon("Morning", "10/04/2009", "The Doctrine of Eternal Punishment in Hell", "Revelation 14:6-13", "Steve Jennings", "105092040154")); | |
sermonList.push(new Sermon("Evening", "09/27/2009", "Forgiven, Yet Severely Chastened", "2 Sam. 12:7–15", "Steve Jennings", "929092113342")); | |
sermonList.push(new Sermon("Morning", "09/27/2009", "The 144,000 with the Lamb", "Revelation 14:1-5; 7:1-3", "Steve Jennings", "92909217420")); | |
sermonList.push(new Sermon("Evening", "09/20/2009", "What Happens After Repentance?", "Psalm 32", "Steve Jennings", "92109630391")); | |
sermonList.push(new Sermon("Morning", "09/20/2009", "Marked - By the Beast or By the Lamb", "Revelation 13:11-18", "Steve Jennings", "92109624252")); | |
sermonList.push(new Sermon("Evening", "09/13/2009", "Facing Our Guilt with the Help of a True Friend", "2 Samuel 13:1-7, 13; Psalm 51", "Steve Jennings; Jesse Pickett", "913092216397")); | |
sermonList.push(new Sermon("Morning", "09/13/2009", "Beware Satan's Counterfeit Christ", "Revelation 13:1-10", "Steve Jennings", "91309229304")); | |
sermonList.push(new Sermon("Evening", "09/06/2009", "The Foolish Wickedness of Trying to Cover Over Our Sin", "2 Samuel 11:6-21", "Steve Jennings", "96092258173")); | |
sermonList.push(new Sermon("Morning", "09/06/2009", "The Christian Is Always Ready to Face Death for Christ's Sake", "Revelation 12:7-11", "Steve Jennings", "96092248370")); | |
sermonList.push(new Sermon("Evening", "08/30/2009", "A Night of Pleasure, a Lifetime of Regret", "2 Samuel 11:1-5", "Steve Jennings", "92091941140")); | |
sermonList.push(new Sermon("Morning", "08/30/2009", "Satan Cast Out", "Revelation 12:7-12; John 3:16-21", "Steve Jennings", "92091916157")); | |
sermonList.push(new Sermon("Evening", "08/23/2009", "It's a Major Mistake to Spurn the Lord's Kindness", "2 Samuel 10:1-19", "Steve Jennings", "82409643575")); | |
sermonList.push(new Sermon("Morning", "08/23/2009", "Where Does This Biblical Worldview Reveal That We Live?", "Revelation 12:1-6,14,17", "Steve Jennings", "8240963551")); | |
sermonList.push(new Sermon("Evening", "08/16/2009", "Cripples at the King's Table", "2 Samuel 9:1-13", "Steve Jennings", "81809531561")); | |
sermonList.push(new Sermon("Morning", "08/16/2009", "Heaven's Gallery Opened", "Revelation 12:1-6", "Steve Jennings", "81809525320")); | |
sermonList.push(new Sermon("Evening", "08/09/2009", "Thy Kingdom Come", "2 Samuel 8:1-18", "Steve Jennings", "81209622471")); | |
sermonList.push(new Sermon("Morning", "08/09/2009", "The Final Word, Prayer for the Church's Preachers", "Ephesians 6:18-20; Colossians 4:2-4", "Steve Jennings", "81209617360")); | |
sermonList.push(new Sermon("Morning", "08/02/2009", "Praying in the Spirit", "Ephesians 6:18", "Steve Jennings", "8309537400")); | |
sermonList.push(new Sermon("Evening", "07/26/2009", "Responding to the Grace of God", "2 Samuel 7:18-29", "Steve Jennings", "72709614340")); | |
sermonList.push(new Sermon("Morning", "07/26/2009", "The Weapns We Fight With Are Not the Weapons the World Uses", "2 Corinthians 10:1-6", "Steve Jennings", "7270965204")); | |
sermonList.push(new Sermon("Evening", "07/19/2009", "Our Great Covenant Keeper", "Genesis 15", "Tommy Park", "71909215090")); | |
sermonList.push(new Sermon("Morning", "07/19/2009", "This One Was Born in Zion", "Psalm 87", "Tommy Park", "719092144403")); | |
sermonList.push(new Sermon("Evening", "07/12/2009", "A Prayer for the Church", "Ephesians 3:14-21", "Dan Clay", "712092117248")); | |
sermonList.push(new Sermon("Morning", "07/12/2009", "Rejoicing in Hope", "1 Peter 1:1-9", "Dan Clay", "712092115337")); | |
sermonList.push(new Sermon("Evening", "07/05/2009", "A Model of Worshipful Response to the Covenant of Grace", "2 Samuel 7:18-21", "Steve Jennings", "7609193305")); | |
sermonList.push(new Sermon("Morning", "07/05/2009", "Take Up the Sword of the Spirit", "Ephesians 6:17", "Steve Jennings", "76091911396")); | |
sermonList.push(new Sermon("Evening", "06/28/2009", "God's Covenant with David", "2 Samuel 7:1-17", "Steve Jennings", "7109540180")); | |
sermonList.push(new Sermon("Morning", "06/28/2009", "Take Up the Helmet of Salvation", "Ephesians 6:16-17a; 1 Thessalonians 5:1-8", "Steve Jennings", "7109547501")); | |
sermonList.push(new Sermon("Evening", "06/21/2009", "Behold Our Shield, O God!", "Psalm 84", "Steve Jennings", "621092148495")); | |
sermonList.push(new Sermon("Morning", "06/21/2009", "Take Up the Shield of Faith", "Ephesians 6:16", "Steve Jennings", "621092110529")); | |
sermonList.push(new Sermon("Evening", "06/14/2009", "Spiritual Zeal and Marital Tension", "2 Samuel 6:16-23", "Steve Jennings", "614092112429")); | |
sermonList.push(new Sermon("Morning", "06/14/2009", "The Gospel, Giving Us a Place to Stand", "Ephesians 6:15", "Steve Jennings", "61409216203")); | |
sermonList.push(new Sermon("Evening", "06/07/2009", "God's Presence on God's Terms", "2 Samuel 6:6-15", "Steve Jennings", "68091836363")); | |
sermonList.push(new Sermon("Morning", "06/07/2009", "Put on the Breastplate of Righteousness", "Ephesians 6:10-14", "Steve Jennings", "6809182712")); | |
sermonList.push(new Sermon("Evening", "05/31/2009", "Confronting God's Holiness", "2 Samuel 6:1-11", "Steve Jennings", "531092112586")); | |
sermonList.push(new Sermon("Morning", "05/31/2009", "A New Way of Seeing", "Ephesians 6:10-14", "Steve Jennings", "5310921862")); | |
sermonList.push(new Sermon("Evening", "05/24/2009", "David's Friends & Enemies", "2 Samuel 5:11-25", "Steve Jennings", "524092050130")); | |
sermonList.push(new Sermon("Morning", "05/24/2009", "The Wiles of the Devil", "Ephesians 6:10-13", "Steve Jennings", "524092044591")); | |
sermonList.push(new Sermon("Evening", "05/17/2009", "Victors in the Midst of Strife", "Psalm 37:12-20", "Steve Jennings", "51709204850")); | |
sermonList.push(new Sermon("Morning", "05/17/2009", "Who Is the Enemy?", "Ephesians 6:10-13", "Steve Jennings", "517092041592")); | |
sermonList.push(new Sermon("Evening", "05/10/2009", "The Lord, the God of Hosts, Was with Him", "2 Samuel 5:1-10", "Steve Jennings", "510092114566")); | |
sermonList.push(new Sermon("Morning", "05/10/2009", "Finally...The Call to Battle", "Ephesians 6:10-13", "Steve Jennings", "51009218281")); | |
sermonList.push(new Sermon("Evening", "05/03/2009", "Christ's Kingdom is not Established by Injustice", "2 Samuel 4:1-12", "Steve Jennings", "5309205603")); | |
sermonList.push(new Sermon("Morning", "05/03/2009", "Masters and the Master", "Ephesians 6:5-9; Philemon 1-25", "Steve Jennings", "53092048183")); | |
sermonList.push(new Sermon("Evening", "04/26/2009", "Yet the Kingdom Comes", "2 Samuel 3:1-27", "Steve Jennings", "4260921202410")); | |
sermonList.push(new Sermon("Morning", "04/26/2009", "Good News! A Final Day of Reckoning", "Ephesians 6:5-8", "Steve Jennings", "426092114274")); | |
sermonList.push(new Sermon("Evening", "04/19/2009", "The Meaning and Promise of Meekness", "Psalm 37", "Steve Jennings", "42009538341")); | |
sermonList.push(new Sermon("Morning", "04/19/2009", "What Are You Working For?", "Ephesians 6:5-8", "Steve Jennings", "42009533170")); | |
sermonList.push(new Sermon("Evening", "04/12/2009", "The Kingdom Comes – Not without Opposition", "2 Samuel 2:1-32", "Steve Jennings", "412091710536")); | |
sermonList.push(new Sermon("Morning", "04/12/2009", "The Wise Will Shine", "Daniel 12:1-4", "Steve Jennings", "41209177100")); | |
sermonList.push(new Sermon("Evening", "04/05/2009", "A Time to Grieve", "2 Samuel 1:17-27", "Steve Jennings", "48091756531")); | |
sermonList.push(new Sermon("Morning", "04/05/2009", "This Moment Counts Forever", "Luke 19:41-44", "Steve Jennings", "48091751260")); | |
sermonList.push(new Sermon("Evening", "03/29/2009", "Cold Justice!", "2 Samuel 1:1-16", "Steve Jennings", "329092215565")); | |
sermonList.push(new Sermon("Morning", "03/29/2009", "Fathers, Discipline Your Children", "Ephesians 6:1-4", "Steve Jennings", "32909221421")); | |
sermonList.push(new Sermon("Evening", "03/22/2009", "Saul's End – That Other Part of the Gospel", "1 Samuel 31:1-13", "Steve Jennings", "322092123210")); | |
sermonList.push(new Sermon("Morning", "03/22/2009", "Nation-Shaking and Kingdom Building", "Haggai 2:6-9", "Jonathan Taylor", "322092118191")); | |
sermonList.push(new Sermon("Evening", "03/15/2009", "The Life of Christ in the Life of David", "Psalm 40:1-17", "Steve Jennings", "315092156402")); | |
sermonList.push(new Sermon("Morning", "03/15/2009", "Children, Obey Your Parents in the Lord", "Ephesians 6:1-3", "Steve Jennings", "315092149527")); | |
sermonList.push(new Sermon("Evening", "03/08/2009", "A Wise Division of Labor", "1 Samuel 30:21-30", "Steve Jennings", "3809204581")); | |
sermonList.push(new Sermon("Morning", "03/08/2009", "The Calling of the Seven", "Acts 6:1-7", "Steve Jennings", "")); | |
sermonList.push(new Sermon("Evening", "03/01/2009", "But David Strengthened Himself in the LORD His God", "1 Samuel 30:1-20", "Steve Jennings", "31092052102")); | |
sermonList.push(new Sermon("Morning", "03/01/2009", "The 10 Commandments in the New Testament", "Ephesians 6:1-3", "Steve Jennings", "31092043443")); | |
sermonList.push(new Sermon("Evening", "02/22/2009", "Who Is On the Lord's Side?", "1 Samuel 29:1-11", "Steve Jennings", "222092056247")); | |
sermonList.push(new Sermon("Morning", "02/22/2009", "The Summary Commandments for Husbands and Wives", "Ephesians 5:33", "Steve Jennings", "222092049450")); | |
sermonList.push(new Sermon("Evening", "02/15/2009", "If the Foundations are Destroyed, What Shall the Righteous Do?", "Psalm 11", "Steve Jennings", "21509212745")); | |
sermonList.push(new Sermon("Morning", "02/15/2009", "Christ's Union with His Church", "Ephesians 5:28-32", "Steve Jennings", "215092121438")); | |
sermonList.push(new Sermon("Evening", "02/08/2009", "Saul, Abandoned by God", "1 Samuel 28:3-25", "Steve Jennings", "21209223520")); | |
sermonList.push(new Sermon("Morning", "02/08/2009", "The Sanctifying Power of Love", "Ephesians 5:25-27", "Steve Jennings", "211092136217")); | |
sermonList.push(new Sermon("Evening", "02/01/2009", "The Heights and Depths of Faith", "1 Samuel 27:1-28:2", "Steve Jennings", "21092047357")); | |
sermonList.push(new Sermon("Morning", "02/01/2009", "Husbands in the Role of Imitating the Savior", "Ephesians 5:25-27", "Steve Jennings", "21092041305")); | |
sermonList.push(new Sermon("Evening", "01/25/2009", "Patience Tried Again", "1 Samuel 26:1-25", "Steve Jennings", "1260971502")); | |
sermonList.push(new Sermon("Morning", "01/25/2009", "Marriage and God's Created Order", "Ephesians 5:22-24", "Steve Jennings", "1260972430")); | |
sermonList.push(new Sermon("Evening", "01/18/2009", "Authorized Hatred?", "Psalm 139:19-24", "Steve Jennings", "118092132407")); | |
sermonList.push(new Sermon("Morning", "01/18/2009", "The Call to be Protective Parents", "Genesis 3:20-21", "Steve Jennings", "118092125409")); | |
sermonList.push(new Sermon("Evening", "01/11/2009", "Leaving Judgement to God", "1 Samuel 25:28-34", "Steve Jennings", "1120961054")); | |
sermonList.push(new Sermon("Morning", "01/11/2009", "The Sanctity of Human Marriage", "Ephesians 5:22-33", "Steve Jennings", "112096802")); | |
sermonList.push(new Sermon("Evening", "01/04/2009", "In Your Anger, Do Not Sin", "1 Samuel 25:1-27", "Steve Jennings", "14092121319")); | |
sermonList.push(new Sermon("Morning", "01/04/2009", "Only One Thing Is Needful", "Luke 10:38-42", "Steve Jennings", "14092116433")); | |
sermonList.push(new Sermon("Evening", "12/28/2008", "Will They Know the LORD?", "Judges 2:6-17", "Clive Stephenson", "140917978")); | |
sermonList.push(new Sermon("Morning", "12/28/2008", "Living as Children of Light", "Ephesians 5:8-9", "Clive Stephenson", "1409177266")); | |
sermonList.push(new Sermon("Evening", "12/21/2008", "Faith Appealing to Justice", "1 Samuel 24:1-22", "Steve Jennings", "122208653498")); | |
sermonList.push(new Sermon("Morning", "12/21/2008", "The Humility of God", "Isaiah 57:15; John 14:1-9a", "Steve Jennings", "122208652125")); | |
sermonList.push(new Sermon("Evening", "12/14/2008", "Can Christianity Be Private?", "Psalm 10", "Steve Jennings", "1214082127315")); | |
sermonList.push(new Sermon("Morning", "12/14/2008", "Imitating the Incarnation", "Luke 1:26-38; Philippians 2:5-8", "Steve Jennings", "1214082126153")); | |
sermonList.push(new Sermon("Evening", "12/07/2008", "God Trains Us to Fight Better", "1 Samuel 23:14-29", "Steve Jennings", "1214082121289")); | |
sermonList.push(new Sermon("Morning", "12/07/2008", "Submitting to One Another in the Fear of God", "Ephesians 5:21", "Steve Jennings", "1213081159520")); | |
sermonList.push(new Sermon("Morning", "09/28/2008", "Some Very Close Dangers", "Ephesians 5:3-5", "Steve Jennings", "21209231186")); | |
sermonList.push(new Sermon("Morning", "09/21/2008", "Walk in Love", "Ephesians 5:1-2", "Steve Jennings", "2120923364")); | |
//---------------End of Editable Section----------------- | |
//-----Startup actions----- | |
loadFilters(); | |
document.getElementById('serviceFilter').value = serviceList[0]; | |
document.getElementById('yearFilter').selectedIndex = 1; | |
sortBy(sortColumn, sortDescending); // Make sure that both the up and down arrow images are loaded so that when the user changes sort direction, there is not a flicker as the image is loaded. This happens to work because all of the other properties are sorted in the opposite direction; therfore, both the up and down arrow images |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment