- published: 28 Jun 2021
- views: 919
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The Book of Lamentations (Hebrew: אֵיכָה, Eikhah, from its incipit meaning "how") is a collection of poetic laments for the destruction of Jerusalem. In the Hebrew Bible it appears in the Ketuvim ("Writings"), beside the Song of Songs, Book of Ruth, Ecclesiastes and the Book of Esther (the Megilloth or "Five Scrolls"), although there is no set order; in the Christian Old Testament it follows the Book of Jeremiah, as the prophet Jeremiah is its traditional author.
It is generally accepted that the destruction of Jerusalem by Babylon in 586 BC forms the background to the poems. The book is partly a traditional "city lament" mourning the desertion of the city by its god, its destruction, and the ultimate return of the divinity, and partly a funeral dirge in which the bereaved bewails and addresses the dead. The tone is bleak: God does not speak, the degree of suffering is presented as undeserved, and expectations of future redemption are minimal.
The book is traditionally recited on the fast day of Tisha B'Av ("Ninth of Av"), mourning the destruction of both the First Temple and the Second; in Christianity it is traditionally read during Tenebrae of the Holy Triduum.
Herbert Whitton Sumsion CBE (14 January 1899 – 11 August 1995) was an English musician who was organist of Gloucester Cathedral from 1928 to 1967. Through his leadership role with the Three Choirs Festival, Sumsion maintained close associations with major figures in England's 20th-century musical renaissance, including Edward Elgar, Herbert Howells, Gerald Finzi, and Ralph Vaughan Williams. Although Sumsion is known primarily as a cathedral musician, his professional career spanned more than 60 years and encompassed composing, conducting, performing, accompanying, and teaching. His compositions include works for choir and organ, as well as lesser-known chamber and orchestral works.
Jeremiah (/dʒɛrᵻˈmaɪ.ə/;Hebrew: יִרְמְיָהוּ, Modern: Yirmeyahu [jiʁmeˈjahu], Tiberian: Yirmĭyāhū; Greek: Ἰερεμίας; Arabic: إرميا Irmiyā) meaning "Yah Exalts", also called the "Weeping prophet", was one of the major prophets of the Hebrew Bible (Christian Old Testament). Jeremiah is traditionally credited with authoring the Book of Jeremiah, 1 Kings, 2 Kings and the Book of Lamentations, with the assistance and under the editorship of Baruch ben Neriah, his scribe and disciple.
Judaism considers the Book of Jeremiah part of its canon, and regards Jeremiah as the second of the major prophets. Christianity also regards Jeremiah as a prophet and he is quoted in the New Testament.Islam too considers Jeremiah a prophet, and he is listed as a major prophet in Ibn Kathir's Qisas Al-Anbiya (Stories of the Prophets).
About a year after King Josiah of Judah had turned the nation toward repentance from the widespread idolatrous practices of his father and grandfather, Jeremiah's sole purpose was to reveal the sins of the people and explain the reason for the impending disaster (destruction by the Babylonian army and captivity), "And when your people say, 'Why has the Lord our God done all these things to us?' you shall say to them, 'As you have forsaken me and served foreign gods in your land, so you shall serve foreigners in a land that is not yours.'" God's personal message to Jeremiah, "Attack you they will, overcome you they can't," was fulfilled many times in the Biblical narrative: Jeremiah was attacked by his own brothers, beaten and put into the stocks by a priest and false prophet, imprisoned by the king, threatened with death, thrown into a cistern by Judah's officials, and opposed by a false prophet. When Nebuchadnezzar seized Jerusalem in 586 BC, he ordered that Jeremiah be freed from prison and treated well.
R. Jeremiah (Hebrew: רבי ירמיה) was a Tanna sage of the last generation and an Amora sage of the first generation, active in the Land of Israel during the transition period between the Tannaic and Amora sages eras. In Tractate Sukkah it is storied that that one of his pupils was a sage called Hezekiah, R. Rabbi Yehudah be-Rabbi Kalonymus mi-Speyer, the author of Sefer Yiḥusei Tanna'im ve-Amora'im, raises the question whether it was Hezekiah the son of R. Hiyya or whether it was Hezekiah the son of the daughter of Rab.
R. Yirmeyah (or R. Jeremiah (iii) or Jeremiah ben Abba;Hebrew: רבי ירמיה, read as Rabbi Yirmeyah) was a prominent Jewish Amora sage of the Land of Israel, of the fourth generation of the Amora era (4th century). He was born in Babylon and made Aliyah to the Land of Israel while he was still young. In The Land of Israel he learned under R. Yochanan bar Nafcha's disciples, mainly under Rav Zeira. He stood out with his many questions, many of which that were left unanswered. In the Talmud it is storied that he was once ejected from a Beth Midrash because of his questions concerning border line cases that required accuracy on determining the exact definition of the border line. His exceptional questions gained publicity, and some use the phrase a Jeremiah question to refer to rare or out of the ordinary questions. After he was taken out of the Beth Midrash, the prominent sages of the generation sent him Halakhahic questions, and his answers made them decide to return him back to the Beth Midrash. Yirmeyah was known for his love of the Land of Israel, and used to denounce the Babylonians. His Beth Midrash was located in Tiberias.
The Cathedral Choir Raymond Nagem, Organ Kent Tritle, Conductor Join us for worship and music each Sunday at 11 am. For more info, visit stjohndivine.org.
Sung live by the Choir of Selwyn College, Cambridge, under the direction of Sarah MacDonald
Magnificat & Nunc Dimittis by Herbert Sumsion, in G - with scrolling score. Listen out for the organ 'saying' ... HAVE A BANANA !!??
Sung by the Choir of St John's College, Cambridge under the direction of George Guest
A bit of British music, a solemn march.
Edward Taylor plays Ceremonial March by Herbert Sumsion on the organ of Carlisle Cathedral
Roden Boys Choir Rintje te Wies: conductor / Sietze de Vries: organ
My heartfelt thanks to my friend and mentor Leigh Askew for introducing me to this beautiful piece. Herbert Sumsion was an English composer and organist who was born in Gloucester in 1895. He was a chorister at Gloucester Cathedral and later studied at the Royal College of Music in London. Sumsion was a prolific composer, writing works for choir, orchestra, and organ. His choral works are particularly well-known, and he was appointed Master of the Choristers at Gloucester Cathedral in 1929. One of Sumsion's most beloved works is the Chorale Prelude on Down Ampney, written in 1932. This piece is a beautiful and majestic chorale prelude, featuring a soaring melody and lush harmonies. It is a perfect example of Sumsion's skill as a composer, and it is a beloved piece among organists. The pi...
Recorded during Psalmenvesper/Evensong on 9-6-2019 in the Martinikerk Groningen (NL)
SUNDAY BREAKTHROUGH SERVICE (27TH AUG. 2023) LIVE WITH SNR. PROPHET JEREMIAH OMOTO FUFEYIN. The Official Christ Mercyland Deliverance Ministries JOIN US ON ALL OUR PLATFORMS Facebook: https://www.facebook.com/prophetjeremiahministries YouTube: https://youtube.com/c/ChristMercyland Twitter: https://twitter.com/prophetj_omoto Instagram: https://instagram.com/prophetjeremiahomoto Website: https://christmercyland.org Inquires: [email protected] Partners: [email protected] Give: [email protected] PayPal: [email protected] CASHAPP: $jeremiahfufeyin. GOD BLESS YOU
Why Does God Let Bad Things Happen?: https://bit.ly/3JTDR3n Message Description: The longing for approval by man is a never-ending spiral, but with God there is acceptance as we bow our head and knee to Christ and receive His unconditional approval. 00:00 - Saved...but not "So Saved" 01:40 - Dr. Jeremiah's message - "Disapproval: The Fear of Rejection" 41:25 - Next Time on Turning Point Sleep on This - Evening Reflections from God’s Word: https://bit.ly/3JTDRjT ..................................................................................................................................................................... Subscribe to the Official David Jeremiah channel to stream our latest messages and much more: http://ow.ly/EpXw50Dg5o7 Hit the Notification Bell 🔔 so that you nev...
Watch our overview video on the book of Jeremiah, which breaks down the literary design of the book and its flow of thought. Jeremiah announces that God will judge Israel’s sins with an exile to Babylon. And then, he lives through the horror of his predictions. #Jeremiah #BibleProject #BibleVideo
🌌 Immerse yourself in the profound narrative of the Book of Jeremiah, a journey through a time of turmoil and transformation. Jeremiah, known as the "weeping prophet," brings to life an era where the Kingdom of Judah faces existential threats and societal upheaval. 🌟 In this KJV reading, it delves deep into themes of warning, repentance, and hope. Jeremiah's prophecies offer a poignant reflection on the struggles between faith and societal decay, and the consequences of turning away from divine guidance. This audio Bible captures the intensity and emotional depth of Jeremiah's call for return to righteousness and the looming peril of ignoring divine warnings. ✨ Experience the compelling narrative of the Book of Jeremiah, where prophetic visions, political intrigue, and the quest for rede...
The Summer I Turned Pretty is an American coming-of-age romantic drama television series created by author Jenny Han for Amazon Prime Video, and is based on her novel trilogy of the same name. Lola Tung stars as a teenager involved in a love triangle with two brothers played by Christopher Briney and Gavin Casalegno. Production on the series began in 2021. It premiered on June 17, 2022, with the first season consisting of seven episodes. Ahead of the series premiere, it was renewed for a second season which premiered on July 14, 2023, and will consist of eight episodes. #TheSummerITurnedPretty is now streaming on #PrimeVideo!
The book of Jeremiah is a series of oracles written by the prophet Jeremiah in the southern kingdom of Judah over a period of forty-plus years. It speaks of God's impending judgment of Israel and the promise of future restoration and renewal. In this flight, we consider the prophet's calling and see why he is called the weeping prophet. We also catch a glimpse of the light at the end of the tunnel for Israel. This teaching is from our series The Bible from 30,000 Feet - 2018 with Skip Heitzig from Calvary Church.
►Speech is completely original and produced exclusively by Grace Digital Network ►Music licensed through Artlist.io ►Footage licensed through Filmpac.com and Storyblocks ►Animation: Tina Davidson ►Writer: David Kolawole ► Thumbnail Design Team - https://www.fiverr.com/ayodzine/create-unique-stock-images-using-ai All scripture animations are derived from the King James Bible (KJB) or simply the Authorized Version (AV) Our purpose, when making these videos, is to make quality educational motivational videos and share these with our viewers. Note: We own copyright to the footages and background music used in this video. 🎬Clips Channel🎬 https://www.youtube.com/@gracedigitalclips927 ---------------------------------------------------------- Title: HIDDEN TEACHINGS of the Bible | Jeremi...
A chapter by chapter and verse by verse study of Jeremiah taught by Pastor Paul LeBoutillier of Calvary Chapel Ontario, Oregon. Visit us at www.ccontario.com for online studies through the entire Bible.
Fala com a gente gal, somos a NATY E A ISA! Hoje vamos falar sobre a série teen que está parando a internet, O Verão que Mudou a Minha Vida. Afinal quem está errado no triângulo Belly, Conrad e Jeremiah? NOSSO SEGUNDO CANAL: https://youtube.com/channel/UCyZzwMh3s6nx1v2ZOiCYiFg Quem somos? Duas amigas alucinadas por CULTURA POP NO GERAL, e nesse canal vamos falar de TUDO E TODAS AS COISAS QUE AMAMOS NESSE MUNDÃO! Vem com a gente 💁🏼♀️💁🏽♀️ Instas: @natisatv @isagualbertos @thenatisas afinal, ela é uma destruidora de lares e uma traidora em série? Vem entender tudo. NOSSO SEGUNDO CANAL: https://youtube.com/channel/UCyZzwMh3s6nx1v2ZOiCYiFg Quem somos? Duas amigas alucinadas por CULTURA POP NO GERAL, e nesse canal vamos falar de TUDO E TODAS AS COISAS QUE AMAMOS NESSE MUNDÃO! Vem com a ge...
The Book of Lamentations (Hebrew: אֵיכָה, Eikhah, from its incipit meaning "how") is a collection of poetic laments for the destruction of Jerusalem. In the Hebrew Bible it appears in the Ketuvim ("Writings"), beside the Song of Songs, Book of Ruth, Ecclesiastes and the Book of Esther (the Megilloth or "Five Scrolls"), although there is no set order; in the Christian Old Testament it follows the Book of Jeremiah, as the prophet Jeremiah is its traditional author.
It is generally accepted that the destruction of Jerusalem by Babylon in 586 BC forms the background to the poems. The book is partly a traditional "city lament" mourning the desertion of the city by its god, its destruction, and the ultimate return of the divinity, and partly a funeral dirge in which the bereaved bewails and addresses the dead. The tone is bleak: God does not speak, the degree of suffering is presented as undeserved, and expectations of future redemption are minimal.
The book is traditionally recited on the fast day of Tisha B'Av ("Ninth of Av"), mourning the destruction of both the First Temple and the Second; in Christianity it is traditionally read during Tenebrae of the Holy Triduum.