- published: 03 Jul 2012
- views: 110
'+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 Lutheran Church–Missouri Synod (LCMS), often referred to simply as the Missouri Synod, is a traditional, confessional Lutheran denomination in the United States. With 2.1 million members, it is both the eighth-largest Protestant denomination and the second-largest Lutheran body in the U.S., the largest being Evangelical Lutheran Church in America. The LCMS was organized in 1847 at a meeting in Chicago, Illinois as the German Evangelical Lutheran Synod of Missouri, Ohio, and Other States, a name which reflected the geographic locations of the founding congregations. The LCMS is headquartered in Kirkwood, Missouri.
The LCMS has congregations in all 50 U.S. states and two Canadian provinces, but over half of its members are located in the Midwest. It is a member of the International Lutheran Council, and is in altar and pulpit fellowship with most of that group's members. The LCMS is divided into 35 districts—33 of which are geographic and two (the English and the SELC) are non-geographic. The current president is the Rev. Matthew C. Harrison, who took office on September 1, 2010.
The Lutheran Church–Missouri Synod (LCMS) is organized into 35 districts, 33 of which are defined along geographic lines. Each district has a president who oversees the congregations in his district, which are further subdivided into local circuits. The position of president is roughly analogous to the role of bishop in many church bodies, but LCMS doctrine supports a generally congregationalist polity as opposed to an exclusively hierarchical governance.
Districts choose their own district presidents at their triennial conventions from among the pastors in the district. In some districts the district president occupies a full-time position, while in others he continues to serve as pastor in a congregation.
The 35 district presidents plus the synod president form the Council of Presidents (COP), which places graduates from the two LCMS seminaries as pastors in congregations which have requested such a candidate. If a congregation desires an experienced pastor to fill a vacancy, the district president may suggest a list of possible candidates (gleaned from interactions with the COP as well as other sources), but the district president does not assign pastors in this case; the congregation extends a "call" directly to the pastor.
Missouri (see pronunciations) is a state located in the Midwestern United States. It is the 21st most extensive, and the 18th most populous of the fifty states. The state comprises 114 counties and the independent city of St. Louis.
As defined by the 2010 US census, the four largest urban areas in order of population are St. Louis, Kansas City, Springfield, and Columbia. The mean center of the United States population at the 2010 census was in the town of Plato in Texas County. The state's capital is Jefferson City. The land that is now Missouri was acquired from France as part of the Louisiana Purchase and became known as the Missouri Territory. Part of this territory was admitted into the union as the 24th state on August 10, 1821.
Missouri's geography is highly varied. The northern part of the state lies in dissected till plains and the southern portion lies in the Ozark Mountains (a dissected plateau), with the Missouri River dividing the regions. The state lies at the intersection of the three greatest rivers of the United States, with the confluence of the Mississippi and Missouri Rivers near St. Louis, and the confluence of the Ohio River with the Mississippi north of the Bootheel. The starting points for the Pony Express, Santa Fe Trail, and Oregon Trail were all located in Missouri as well.
Missouri is a rock band from Kansas City, Missouri, known primarily for the song "Movin' On".
During the late 1960s and early 1970s, Ron West was part of a well-remembered Kansas City band, The Chesmann, with his two brothers Gary and Steve. Heavily inspired by British invasion groups, the band played both live covers and recorded original studio material. Gary West was also a member of the band Shooting Star, which scored several modest AOR hits in the late 1970 and early 1980s.
Led by Ron West, the band's self-titled first album was released in 1977 on a label called Panama Records. Even though Panama was an independent label, the band garnered substantial airplay on American FM AOR radio stations, specifically with the track "Movin On". Missouri's first gig was opening for Firefall in Emporia, Kansas. Missouri toured nationally with many major label acts such as Ted Nugent, Golden Earring, among many others.
A second album, "Welcome Two Missouri", was released on the larger and international Polydor label in 1979, including a re-recorded version of "Movin On" minus the original intro. By this time two of the original line up had dropped out. No further recordings except a repackaging of recordings from the previous albums called the best of Missouri. Missouri songs are available on iTunes.
Missouri Wine refers to wine made from grapes grown in the U.S. state of Missouri. German immigrants in the early-to-mid-19th century, founded the wine industry in Missouri, resulting in its wine corridor being called the Missouri "Rhineland". Later Italian immigrants also entered wine production. In the mid-1880s, more wine was produced by volume in Missouri than in any other state. Before Prohibition, Missouri was the second-largest wine-producing state in the nation. Missouri had the first area recognized as a federally designated American Viticultural Area with the Augusta AVA acknowledged on June 20, 1980. There are now four AVAs in Missouri. In 2009 there were 92 wineries operating in the state of Missouri.
Some Native American tribes cultivated local varieties of grapes. These species were developed further by later German Americans and Italian Americans.
German immigrants to the Missouri River valley established vineyards and wineries on both sides of the river. Hermann, Missouri, settled by Germans in 1837, had ideal conditions to grow grapes for wine. By 1848 winemakers there produced 10,000 US gallons (37,900 l) per year, expanding to 100,000 US gallons (378,500 l) per year by 1856. Overall, the state produced 2,000,000 US gallons (7,570,800 l) per year by the 1880s, the most of any state in the nation.Stone Hill Winery in Hermann became the second largest in the nation (and the third largest in the world), shipping a million barrels of wine by the turn of the 20th century. Its wines won awards at world fairs in Vienna in 1873 and Philadelphia in 1876.
The LCMS is the largest American Confessional Lutheran denominmation. This video gives a brief overview of their doctrine and teachings. #religion #christian #lutheran
Hi! My name is WikipediaInfo, and my goal is to make written pages from Wikipedia more accessible for people that prefer digital media over reading! Today we will be talking about the topic of Northern Illinois District of the Lutheran Church–Missouri Synod. If you enjoyed this video please consider subscribing and liking the video! If you want to give feedback about these videos you can write us an email at [email protected]! All sources are taken from Wikipedia at the time of publishing.
Established in 1924, the Oklahoma District LCMS worships, educates, cares for others, and reaches out to all people with the Good News of Jesus Christ. Education ever at the forefront, Oklahoma Lutherans established schools as early as 1926. We educate children from infants to twelfth grade at schools across the state. Our schools offer a Christ-centered religiously integrated curriculum that meet or exceed state standards for high quality schools. Our District Youth programs provide Christian support, encouragement and direction to youth and youth leaders though gatherings, education, and retreats. And our Campus Ministries provide fellowship for students and the opportunity to study, grow, and learn from God's Word and each other. The Oklahoma District owns and operates Camp Lutherhoma...
Learn about the Oklahoma District of the Lutheran Church - Missouri Synod in this overview delivered by District President Henke.
The SELC District is one of the 35 districts of the Lutheran Church–Missouri Synod (LCMS). It is one of the Synod\s
Hi! My name is WikipediaInfo, and my goal is to make written pages from Wikipedia more accessible for people that prefer digital media over reading! Today we will be talking about the topic of Northern Illinois District of the Lutheran Church–Missouri Synod. If you enjoyed this video please consider subscribing and liking the video! If you want to give feedback about these videos you can write us an email at [email protected]! All sources are taken from Wikipedia at the time of publishing.
Willie Marie Henry, president of the Lutheran Women's Missionary League in the Michigan District, LCMS provided an update on the LWML in Michigan.
Missouri, Missouri best places to live, Missouri things to do, Missouri places to visit, Missouri Living, Living in Missouri, should i move to Missouri, Missouri misery, best things to do in Missouri, worst things to do in Missouri, why do people hate Missouri, dont move to Missouri SHOCKING Truths of Why People Won't Move to Missouri Welcome to Travel OOO! In this channel, we will explore top travel destinations that would be perfect for a vacation in North America, family trip in North America, vlog, road trip in North America or for someone with wanderlust that enjoys exploring. We will also highlight expeditions, parks, hiking and trips in North America that any travel agent would recommend! Inspired by: The Shocking Truths Why People Won't Move to Missouri. Inspired by: Top 10 reas...
The Shocking Truths Why People Won't Move to Missouri. Missouri is a great state with a lot to offer, but there are also some reasons why people might not want to move there. In this video, we'll take a look at some of the reasons why people might choose to live elsewhere. They have affordable real estate, great colleges like Park University, great cities, and lots of rural towns. But, it ain't for everyone. Ultimately, the decision of whether or not to move to Missouri is a personal one. There are pros and cons to living in any state, and it's important to weigh all of the factors before making a decision. If you're considering moving to Missouri, be sure to do your research and make sure that it's the right place for you before you call a realtor. FREE WAYS TO SUPPORT MY CHANNEL ☺️ ...
Behind Bars - World’s Toughest Prisons: Northeast Correctional Center, Missouri, USA | Prison Documentary 2024 Behind Bars - Picaleña Prison, Colombia: https://youtu.be/0GdBtA5AL2Q We’ve partnered with our friends at Photocircle to create a beautiful product that not only helps people in need but also combats climate change. Introducing our wide selection of wall calendars! For every calendar sold, we plant 12 trees in Ethiopia. Get one of these amazing 2025 wall calendars here: https://bit.ly/FDWallCalendars 23,137 people are behind bars in Missouri. One of the inmates is Michael Whitfield, 60 years old, tattooed, fit, convicted in the 90s. Whitfield is one of the few prison inmates enjoying his stay - more or less - and is optimistic about the future. That is due to a small revoluti...
Hey, there fellow Missourians! Or should I say, "The Show-Me State" folks? You know, because they're not ones to just take things at face value, they need to see it to believe it. But let's be honest, the State's also known as the "Gateway to the West", and just a bunch of friendly folks are ready to show you around some of the best places to live in our great state. There are hundreds of rivers and lakes throughout Missouri, not to mention its beaches which are mostly safe for water activities, even though it is in the middle of the country. In fact, its coastline stretches further than California's. Missouri is known for its rolling hills, and quaint towns, and it can be hard to decide where to settle down. In this video, we'll take a look at some of the top cities and towns Let's expl...
Missouri sits in the middle. For the last forty years, it’s been the average center of the country’s population, and today, more than any other, it can claim to be the state where the north meets the south, and the east meets the west. Roughly halfway between the Rockies and the Appalachians, the Canadian border and the Gulf of Mexico, home to flat expanses of farmland, the forested mountains, hills, and cliffs of the Ozarks, and two major American cities, Missouri is a unique and fascinating place, and the twenty-fifth place I will cover in the US Explained. Listen to my podcast here! - https://podcasts.apple.com/us/podcast/riffing-and-ranting/id1704428344 Image Sources - https://docs.google.com/document/d/12Q9yUeD2ZEJdqPNe4EkJK-GAyALkmdABuoFIK00c7YQ/edit?usp=sharing All video clips u...
Is Missouri filled with a bunch of backwards rednecks? Is St. Louis the capital of the nation? And is Missouri in the south or the midwest? We’re gonna go over that and soo much more. So lets grab some fireworks and head down to the lake. We’re gonna unbox the state of Missourah! Well look at this. That sure looks like a lot of fun, huh? This is the Lake of the Ozarks, and it’s smack dab in the middle of Missouri. This is one of the largest man-made lakes in the country. It’s 92 miles long, and there’s more shoreline on this lake than the entire state of California! Every summer, people come from all over the midwest to drink too much and drive their boats too fast. And lots of people live along its banks, too, including a lot of second home owners. There’s 70,000 docks and 900 cam...
The Lutheran Church–Missouri Synod (LCMS), often referred to simply as the Missouri Synod, is a traditional, confessional Lutheran denomination in the United States. With 2.1 million members, it is both the eighth-largest Protestant denomination and the second-largest Lutheran body in the U.S., the largest being Evangelical Lutheran Church in America. The LCMS was organized in 1847 at a meeting in Chicago, Illinois as the German Evangelical Lutheran Synod of Missouri, Ohio, and Other States, a name which reflected the geographic locations of the founding congregations. The LCMS is headquartered in Kirkwood, Missouri.
The LCMS has congregations in all 50 U.S. states and two Canadian provinces, but over half of its members are located in the Midwest. It is a member of the International Lutheran Council, and is in altar and pulpit fellowship with most of that group's members. The LCMS is divided into 35 districts—33 of which are geographic and two (the English and the SELC) are non-geographic. The current president is the Rev. Matthew C. Harrison, who took office on September 1, 2010.
Youth worshipper, goddess of ruin
Youth worshipper, like you know what you're doing
I'll bet the sun and rain never touch your face again
Race against the time
Youth worshipper, hope you know what you're worth now
Youth worshipper, Like you're paying the earth now
You want the child back, want an aphrodisiac
To fill the crack with time
Hooves and horns and teeth and bones
I'm gonna stitch you up when you come unsewn
Youth worshipper, wrapped in blue fox and ermine
Youth worshipper, got no pity for vermin
Your engines and machines drink your fuel and steal your scenes
They come between in time
(Chorus)(Repeat first verse)