- published: 03 Oct 2009
- views: 100487410
'+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; })); }); -->
Country Boy may refer to:
"Country Boy (You Got Your Feet in L.A.)" is a song written by Dennis Lambert and Brian Potter, and recorded by American country music singer Glen Campbell. It was released in October 1975 as the second and final single from the album, Rhinestone Cowboy.
It was Campbell's fifth number one on the Easy Listening chart and went to number 11 in early 1976 on the Billboard Hot 100. "Country Boy (You Got Your Feet in L.A.)" also went to number three on the country chart.
"Thank God I'm a Country Boy", also known as "Country Boy" is a song written by John Martin Sommers and recorded by American singer/songwriter John Denver.
The song was originally included on Denver's 1974 album Back Home Again.
A version recorded live on August 26, 1974 at the Universal Amphitheatre in Los Angeles was included on his 1975 album An Evening with John Denver.
The live version was released as a single and went to No. 1 on both the Billboard magazine Hot Country Singles and Billboard Hot 100 charts. The song topped both charts for one week each, first the country chart (on May 31), and the Hot 100 chart a week later.
"Thank God I'm a Country Boy" was one of six songs released in 1975 that topped both the Billboard Hot 100 and Billboard Hot Country Singles charts. Denver's two-sided hit "I'm Sorry"/"Calypso" also received that distinction.
It was written by John Martin Sommers, a guitar/banjo/fiddle/mandolin player in Denver's backup band, on December 31, 1973 (Denver's thirtieth birthday) when he was driving from his home in Aspen, Colorado to Los Angeles.
I Am may refer to:
IM or Im may refer to:
Windows Live Messenger (formerly MSN Messenger) is a discontinued instant messaging client developed by Microsoft for Windows, Xbox 360, BlackBerry OS, iOS, Java ME, S60 on Symbian OS 9.x, and Zune HD. It connected to the Microsoft Messenger service while also having compatibility with Yahoo! Messenger and Facebook Messenger. The client was first released as MSN Messenger on July 22, 1999, and was marketed under the MSN branding until 2005 when it was rebranded under Windows Live and has since been officially known by its present name, although its previous name was still used colloquially by most of its users. In June 2009, Microsoft reported the service attracted over 330 million active users each month, placing Messenger among the most widely used instant messaging clients in the world.
Following the acquisition of Skype Technologies in May 2011, Microsoft added interoperability between Skype and Microsoft accounts, allowing Skype (which had features unique to its platform and a wider user base) to communicate with Messenger contacts. In 2013, Windows Live Messenger was discontinued and Microsoft began ceasing service to existing clients. The service in China remained active for another 18 months, and ceased operations on October 31, 2014.
Watch the official music video for "Country Boy" by Alan Jackson Listen to Alan Jackson: https://AlanJackson.lnk.to/listenYD Watch more Alan Jackson videos: https://AlanJackson.lnk.to/listenYC/youtube Subscribe to the official Alan Jackson YouTube channel: https://AlanJackson.lnk.to/subscribeYD ****************************************** Facebook: https://AlanJackson.lnk.to/followFI Instagram: https://AlanJackson.lnk.to/followII Twitter: https://AlanJackson.lnk.to/followTI Website: https://AlanJackson.lnk.to/followWI Spotify: https://AlanJackson.lnk.to/followSI YouTube: https://AlanJackson.lnk.to/subscribeYD ****************************************** #AlanJackson #CountryBoy #GoodTime Chorus: 'Cause I'm a country boy, I got a four-wheel drive Climb in my bed and I'll take you for a ride...
Official video for Aaron Lewis' single "Country Boy", featuring George Jones, Charlie Daniels & Chris Young. From the EP "Town Line". Buy "Country Boy" at iTunes - http://budurl.com/atmp Buy the "Town Line" EP at iTunes - http://budurl.com/86cm Follow Aaron Lewis on Facebook - http://budurl.com/cbpd - and Twitter - http://budurl.com/frva. To find upcoming shows visit Aaron on the web at http://aaronlewismusic.com.
Music video for Country Boy (Official Video) performed by Sir Charles Jones. Copyright (C) 2012 Music Access, Inc. #southernsoul #blues #countryboy
Provided to YouTube by Arista Nashville Country Boy · Alan Jackson 34 Number Ones ℗ 2010 Sony Music Entertainment Released on: 2010-11-19 Drums: Eddie Bayers, Jr. Electric Guitar: Brent Mason Keyboards: Hargus "Pig" Robbins Background Vocal: John Wesley Ryles Dobro: Paul Franklin Bass: Glenn Worf Fiddle: Stuart Duncan Acoustic Guitar: Bruce Watkins Organ: Gary Prim Producer: Keith Stegall Auto-generated by YouTube.
Official music video for Country Boy by Maoli, featuring @FijiTheArtist Watch or listen to more from Maoli ⬇️ https://youtube.com/playlist?list=PLzAWj3LTcllJHXx2ZeEfi-qjU4piXN-bT Subscribe 🔔 @MaoliMusic Available to download or stream on the album #MMO2 ⬇️ https://precise.fm/MMO2 Download the Maoli app! https://maolimusic.com/app Directed/edited by @JoshNamba Connect with Maoli online 📲 https://shopmaolimusic.com/ https://maolimusic.com/ https://maolimusic.com/tour https://instagram.com/maolimusic/ https://facebook.com/maolimusic https://tiktok.com/@maolimusic © 2023 Awong Entertainment #Maoli #MaoliMusic
Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Alan jackson https://www.alanjackson.com/ https://www.instagram.com/officialala... https://www.facebook.com/OfficialAlan... https://twitter.com/OfficialJackson 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Verse 1] Excuse me ma'am, I saw you walking I turned around, I'm not a stalker Where you going? Maybe I can help you My tank is full, I'd be obliged to take you [Chorus] 'Cause I'm a country boy, I got a four-wheel drive Climb in my bed and I'll take you for a ride Up city streets, down country roads I can get you where you need to go 'Cause I'm a country boy ...
"Thank God I'm A Country Boy" by John Denver Listen to John Denver: https://JohnDenver.lnk.to/listenYD Subscribe to the official John Denver YouTube channel: https://JohnDenver.lnk.to/subscribeYD Watch more John Denver videos: https://JohnDenver.lnk.to/listenYD/youtube Follow John Denver: Facebook: https://JohnDenver.lnk.to/followFI Instagram: https://JohnDenver.lnk.to/followII Twitter: https://JohnDenver.lnk.to/followTI Website: https://JohnDenver.lnk.to/followWI Spotify: https://JohnDenver.lnk.to/followSI YouTube: https://JohnDenver.lnk.to/subscribeYD Lyrics: So kiss me and smile for me Tell me that you'll wait for me Hold me like you'll never let me go 'Cause I'm leaving on a jet plane Don't know when I'll be back again Oh babe, I hate to go #JohnDenver #ThankGodImACountryBoy #Offici...
Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Luke Combs: https://LC.lnk.to/profileYT/instagram https://LC.lnk.to/profileYT/facebook https://LC.lnk.to/profileYT/twitter 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Verse 1] They got skinned-up knees Grass stains on their jeans Dirt on their hands They're just like their dads They dig in the dirt Cut up in church Play outside And say things like [Chorus] Can I reel one in? Dad, you're my best friend Just one more spin I promise I'll be good if you let me drive This is so much fun I shoot my BB gun Watch how fast I can run They're dirty and muddy and buddy Yo...
Provided to YouTube by Ditto Music Country Boy · Peat and Diesel Uptown Fank ℗ [email protected] Released on: 2019-05-24 Auto-generated by YouTube.
"Thank God I'm A Country Boy" by John Denver Listen to John Denver: https://JohnDenver.lnk.to/listenYD Subscribe to the official John Denver YouTube channel: https://JohnDenver.lnk.to/subscribeYD Watch more John Denver videos: https://JohnDenver.lnk.to/listenYD/youtube Follow John Denver: Facebook: https://JohnDenver.lnk.to/followFI Instagram: https://JohnDenver.lnk.to/followII Twitter: https://JohnDenver.lnk.to/followTI Website: https://JohnDenver.lnk.to/followWI Spotify: https://JohnDenver.lnk.to/followSI YouTube: https://JohnDenver.lnk.to/subscribeYD Lyrics: So kiss me and smile for me Tell me that you'll wait for me Hold me like you'll never let me go 'Cause I'm leaving on a jet plane Don't know when I'll be back again Oh babe, I hate to go #JohnDenver #ThankGodImACountryBoy #Offici...
Read Description here for more information! I do not own any part of this song, and take no credit for this song or the lyrics in it. Songwriter: John Martin Sommers Song: “Thank God I'm a Country Boy" by John Denver Background Image: Picture taken by Sarah Pretzel in Edgerton, OH Feel free to send me song suggestions to make lyric videos for 😊 Check out my channel for other great song lyrics to some awesome music!
John Denver - Thank God I'm A Country Boy (From "Around The World Live" DVD) John Denver is one of the most successful and best loved recording artists of the 20th century. His easy going manner, fine voice, superb songwriting and dedication to environmental issues all combined to build a huge global fanbase that has continued to grow since his untimely death in a plane crash in 1997. This superb 5 disc set is the definitive John Denver DVD release. There are three complete live performances with full band from Australia in 1977, Japan in 1981 and England in 1986. These are complemented by a solo acoustic performance from Japan in 1984 and his performances at Farm Aid from 1985, 1987 & 1990. The final disc has two hour long documentaries made by John Denver, his 1990 Earth Day programme a...
John Denver- Thank god I'm a country boy I do not own the rights to this song. Please Enjoy!! R.I.P John Denver Lyrics: Well life on the farm is kinda laid back Aint much an old country boy like me cant hack Its early to rise, early in the sack Thank God Im a country boy Well a simple kinda life never did me no harm A raisin me a family and workin on a farm My days are all filled with an easy country charm Thank God Im a country boy Well I got me a fine wife I got me a fiddle When the suns comin up I got cakes on the griddle Life aint nothin but a funy funny riddle Thank God Im a country boy When the works all done and the suns settlin low I pull out my fiddle and I rosin up the bow The kids are asleep so I keep it kinda low Thank God Im a country boy Id play Sally Goodin all day if ...
John Denver - Thank God I'm a Country Boy (22 March1977) - Thank God I'm a Country Boy “Thank God I’m a Country Boy” was a March 22, 1977 ABC television special. It starred John Denver as host, Johnny Cash, Roger Miller, Glen Campbell, and Mary Kay Place... http://www.vintagevinylnews.com/2017/03/vintage-video-john-denvers-thank-god-im.html John Denver sings his iconic song “Thank God I’m a Country Boy.” He is accompanied by Johnny Cash (guitar), Roger Miller (fiddle) and Glen Campbell (banjo). "Thank God I'm a Country Boy", also known as "Country Boy", is a song written by John Martin Sommers and recorded by American singer/songwriter John Denver. The song was originally included on Denver's 1974 album Back Home Again. A version recorded live on August 26, 1974 at the Universal Amphi...
We hope you enjoy our version of this John Denver classic! Our new album LAND OF THE FREE is out now ► http://smarturl.it/ShopLandOfTheFree ► Keep In Touch, Dang It! Newsletter: smarturl.it/HF-Updates ► You Can Get These Videos Early: smarturl.it/HF-Patreon ► Check Out Our Music on Spotify: smarturl.it/HF-SP ► Listen with Apple Music: smarturl.it/HF-AM ► All Our Songs Are Made WithOUT Instruments, SUBSCRIBE: smarturl.it/HF-YT ► Text us: # 615-392-1183 Home Free's Socials: ► Facebook: smarturl.it/HF-FB ► Twitter: smarturl.it/HF-TW ► Instagram: smarturl.it/HF-IG ► Tik Tok: smarturl.it/HF-TT Directed, filmed, edited by Reilly Zamber, McKenzie Zamber, and Jimmy Bates for FifGen Films Makeup Design and Hair by Olena Lysenko Production Assistant: Jenika Marion Big Thanks to our patrons.....
Provided to YouTube by Sony Music Entertainment Thank God I'm A Country Boy · John Denver Pure... Country Stars ℗ 1974 BMG Music Released on: 2014-03-21 Producer: Milton Okun Assistant Producer: Kris O'Connor Composer, Lyricist: John Martin Sommers Auto-generated by YouTube.
Provided to YouTube by RCA Records Label Thank God I'm a Country Boy (Live at the Universal Amphitheatre, Los Angeles, CA - August/September 1974) · John Denver An Evening With John Denver ℗ 1975 RCA Records, a division of Sony Music Entertainment Released on: 1975-02-01 Composer, Lyricist: John Martin Sommers Banjo, Fiddle, Guitar, Mandolin: John Sommers Conductor, Orchestrator: Lee Holdridge Bass: Dick Kniss Drums: Herb Lovelle Percussion: Hal Blaine Dobro, Guitar, Steel Guitar: Steve Weisberg Violin: Sidney Sharp Violin: Murray Adler Violin: William Kurasch Violin: Assa Drori Violin: Ronald Folsom Violin: Joy Lyle Violin: Ralph Schaeffer Violin: David Turner Violin: Jay Rosen Violin: Tibor Zelig Violin: Mari Tsamura Violin: Wilbert Nuttycombe Viola: Samuel Boghossian Viola: Allan ...
Provided to YouTube by Revolver Records Thank God I'm A Country Boy · John Denver Sunshine On My Shoulders ℗ 1974 Sony Music Released on: 1974-12-31 Main Artist: John Denver Associated Performer: John Denver Composer: John Sommers Auto-generated by YouTube.
A wonderful track from John's "Back Home Again" album, 1974. (A "live" version was included on his 1975 album "An Evening With John Denver" and when released as a single it went to #1 on the US Country chart.
Country Boy may refer to:
I ain't gonna marry in the fall
I ain't gonna marry in the spring
Cause I'm in love with a pretty little girl
Who wears a diamond ring
CHORUS:
Cause I'm just a country boy
Money have I none
But I've got silver in the stars
And gold in the morning sun
And gold in the morning sun
Never gonna kiss the ruby red lips
Of the prettiest girl in town
Never gonna ask her if she'd marry me
I know she'd turn me down
Never could afford a store bought ring
With a sparkling diamond stone
All I could afford is a lovin' heart