'+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; })); }); -->

Jim Reeves

James Travis "Jim" Reeves (August 20, 1923  July 31, 1964) was an American country and popular music singer-songwriter. With records charting from the 1950s to the 1980s, he became well known as a practitioner of the Nashville sound (a mixture of older country-style music with elements of popular music). Known as "Gentleman Jim", his songs continued to chart for years after his death. Reeves died in the crash of a private airplane. He is a member of both the Country Music and Texas Country Music Halls of Fame.

Biography

Early life and education

Reeves was born in Galloway, Texas, a small rural community near Carthage. Winning an athletic scholarship to the University of Texas, he enrolled to study speech and drama, but quit after only six weeks to work in the shipyards in Houston. Soon he resumed baseball, playing in the semi-professional leagues before contracting with the St. Louis Cardinals "farm" team during 1944 as a right-handed pitcher. He played for the minor leagues for three years before severing his sciatic nerve while pitching, which ended his athletic career.

White Cliffs of Dover

Coordinates: 51°08′N 1°22′E / 51.14°N 1.37°E / 51.14; 1.37

The White Cliffs of Dover are cliffs that form part of the English coastline facing the Strait of Dover and France. The cliffs are part of the North Downs formation. The cliff face, which reaches up to 350 feet (110 m), owes its striking façade to its composition of chalk accentuated by streaks of black flint. The cliffs spread east and west from the town of Dover in the county of Kent, an ancient and still important English port.

The cliffs have great symbolic value in Britain because they face towards Continental Europe across the narrowest part of the English Channel, where invasions have historically threatened and against which the cliffs form a symbolic guard. Because crossing at Dover was the primary route to the continent before the advent of air travel, the white line of cliffs also formed the first or last sight of England for travellers.

Location

The cliffs are located along the coastline of England between approximately 51°06′N 1°14′E / 51.100°N 1.233°E / 51.100; 1.233 and 51°12′N 1°24′E / 51.200°N 1.400°E / 51.200; 1.400. The White Cliffs are at one end of the Kent Downs designated Area of Outstanding Natural Beauty.

White Cliffs of Dover (disambiguation)

The White Cliffs of Dover are cliffs which form part of the coastline of England, facing the Strait of Dover.

White Cliffs of Dover may also refer to:

  • The White Cliffs of Dover (film), a 1944 American romance film based on a verse-novel by Alice Duer Miller
  • "(There'll Be Bluebirds Over) The White Cliffs of Dover", a 1941 song written by Walter Kent and Nat Burton, popularized by Vera Lynn
  • See also

  • Cliffs of Dover (disambiguation)
  • Dover, Pennsylvania

    Dover is a borough in York County, Pennsylvania, United States. The population was 2,007 at the 2010 census.

    History

    James Joner purchased 203 acres (0.82 km2) in 1764 and laid out the town of Dover. It was known as Jonerstown until 1815, when it was officially called Dover.

    During the 1863 Gettysburg Campaign of the American Civil War, Dover was briefly occupied overnight, June 30 – July 1, by Confederate cavalry under J.E.B. Stuart.

    Dover was incorporated in 1864, 100 years after its founding.

    The Englehart Melchinger House was listed on the National Register of Historic Places in 1992.

    Geography

    Dover is located in York County at 40°0′14″N 76°50′58″W / 40.00389°N 76.84944°W / 40.00389; -76.84944 (40.003846, -76.849397),5 miles (8 km) northwest of the county seat of York. The borough is entirely surrounded by Dover Township.

    According to the United States Census Bureau, the borough has a total area of 0.5 square miles (1.3 km2), all of it land.

    Demographics

    As of the census of 2000, there were 1,815 people, 770 households, and 489 families residing in the borough. The population density was 3,623.6 people per square mile (1,401.6/km2). There were 790 housing units at an average density of 1,577.2 per square mile (610.0/km2). The racial makeup of the borough was 96.47% White, 1.05% African American, 0.39% Native American, 0.83% Asian, 0.72% from other races, and 0.55% from two or more races. Hispanic or Latino of any race were 1.43% of the population.

    Dover, Massachusetts

    Dover is a town in Norfolk County, Massachusetts, United States. The population was 5,589 at the 2010 census.

    Located about 15 miles (24 km) southwest of downtown Boston, Dover is a residential town nestled on the south banks of the Charles River. Almost all of the residential zoning requires 1-acre (4,000 m2) or larger. As recently as the early 1960s, 75% of its annual town budget was allocated to snow removal, as only a mile and a half of the town's roads are state highway.

    Dover is bordered by: Natick, Wellesley and Needham to the North, Westwood to the East, Walpole and Medfield to the South, Sherborn to the West.

    For geographic and demographic information on the census-designated place Dover, please see the article Dover (CDP), Massachusetts.

    Dover is also home to the Dover Demon.

    History

    The first recorded settlement of Dover was in 1640. It was later established as the Springfield Parish of Dedham in 1748, and incorporated as District Dedham in 1784. Dover was officially incorporated as a town in 1836.

    Dover (truck)

    Dover was a make of trucks, owned by the Hudson Motor Car Company of Detroit, Michigan. Hudson announced the Dover brand in July 1929 as "Dover, built by Hudson Motors."

    When introduced, Dover trucks were available as a "Screenside Express", Canopy Express, Open Flatbed, Panel Delivery and Cab and Chassis. Prices ranged between $595 and $895. Bodies for the trucks were built by Hercules of Evansville, Indiana.

    The largest purchaser of Dover Trucks was the United States Postal Service which put the vehicles into service for mail transport and delivery vehicles. The Dover was a durable vehicle; USPS reported using some of the vehicles well into the 1950s.

    The Dover was pulled from the market in either 1930 or 1931, with Hudson's production records being unspecific. The number of survivor vehicles is very limited; the one known restored mail truck was last known to be owned by a private collector in Michigan.

    A fully restored U.S. mail truck (possibly the vehicle alluded to in the previous paragraph) can currently be seen at Hostetler's Hudson Museum in Shipshewana, Indiana, which opened in October, 2007. The museum contains 48 restored or original Hudson vehicles built between 1909 and 1956. Information on the museum can be found at http://www.hostetlershudsons.com/ .

    Podcasts:

    Jim Reeves

    ALBUMS

    Born: 1923-08-20

    Died: 1964-07-31

    Jim Reeves

    ALBUMS

    Jim Reeves

    ALBUMS

    Jim Reeves

    ALBUMS

    • Jim Reeves "The White Cliffs Of Dover"

      "(There'll Be Blue Birds Over) The White Cliffs Of Dover", beautiful 1960's memory countryballad by Jim still available on many hit compilation albums. http://www.facebook.com/coyotejack1965

      published: 01 Feb 2012
    • Jim Reeves - (There'll Be Bluebirds Over) The White Cliffs Of Dover (1963).

      (Written by Nat Burton - Walter Kent) Recorded 1941 by Glenn Miller MADE FAMOUS by Vera Lynn Recorded 1942 Also Recorded 1942 by Kate Smith Issued on LP "The International Jim Reeves" (1963). Recorded 26 February 1963 - [19:00-22:00] - RCA Victor Studio, 1610 Hawkins St. Nashville, TN – Jim Reeves [gt/vcl solo], Leo Jackson [gt], Velma Smith [gt], Bob Moore [bass], William Ackerman [drums], Marvin Hughes [vibes], Jean Slater [oboe], Robert Bays [french horn], Boots Randolph [saxophone], Byron Bach [violin], Brenton Banks [violin], Cecil Brower [violin], Solie Fott [violin], Lillian Vann Hunt [violin], Robert White [violin], and Anita Kerr Singers [vcl chorus]...Producer : Chet Atkins. Born James Travis Reeves in Galloway TX (1923 - 1964). Recorded From 1949 to 1964 El...

      published: 11 Sep 2021
    • The White Cliffs of Dover (Remastered 2014)

      Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Remastered 2014) · Jim Reeves Welcome to My World ℗ 2023 Moonhoney Records Released on: 2023-06-23 Auto-generated by YouTube.

      published: 22 Jun 2023
    • The White Cliffs of Dover

      Provided to YouTube by Xelon Entertainment The White Cliffs of Dover · Jim Reeves Fifty Fan Favourites ℗ 2021 Red Sky Records Released on: 2014-11-07 Auto-generated by YouTube.

      published: 31 Mar 2022
    • [There'll Be Bluebirds Over] The White Cliffs of Dover

      Provided to YouTube by RCA Records Label [There'll Be Bluebirds Over] The White Cliffs of Dover · Jim Reeves The International Jim Reeves ℗ Originally released 1963. All rights reserved by Sony Music Entertainment Released on: 1963-10-08 Composer, Lyricist: Walter Kent Composer, Lyricist: Cliff Burton Producer: Chet Atkins Auto-generated by YouTube.

      published: 26 Jan 2017
    • Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover

      Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover

      published: 30 Jan 2021
    • Jim Reeves: The white cliffs of Dover. (1960).

      Are you interrested in Dutch, Flemish,French, English German ore foreighn popular music, from the period from about 1900 till 1960 please subscribe my channel, you can heare many thousands of records all from my own collection ! Sorry for the sometimes poor soundquality ! Greetings from Henk !!!!!

      published: 29 Aug 2023
    • The White Cliffs of Dover (Digitally Remastered)

      Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Digitally Remastered) · Jim Reeves The Greatest Hits - 80 Tracks Digitally Remastered ℗ 2021 Red Sky Records Released on: 2014-06-13 Auto-generated by YouTube.

      published: 31 Mar 2022
    developed with YouTube
    Jim Reeves "The White Cliffs Of Dover"
    2:56

    Jim Reeves "The White Cliffs Of Dover"

    • Order:
    • Duration: 2:56
    • Uploaded Date: 01 Feb 2012
    • views: 48953
    "(There'll Be Blue Birds Over) The White Cliffs Of Dover", beautiful 1960's memory countryballad by Jim still available on many hit compilation albums. http://www.facebook.com/coyotejack1965
    https://wn.com/Jim_Reeves_The_White_Cliffs_Of_Dover
    Jim Reeves - (There'll Be Bluebirds Over) The White Cliffs Of Dover (1963).
    2:53

    Jim Reeves - (There'll Be Bluebirds Over) The White Cliffs Of Dover (1963).

    • Order:
    • Duration: 2:53
    • Uploaded Date: 11 Sep 2021
    • views: 10587
    (Written by Nat Burton - Walter Kent) Recorded 1941 by Glenn Miller MADE FAMOUS by Vera Lynn Recorded 1942 Also Recorded 1942 by Kate Smith Issued on LP "The International Jim Reeves" (1963). Recorded 26 February 1963 - [19:00-22:00] - RCA Victor Studio, 1610 Hawkins St. Nashville, TN – Jim Reeves [gt/vcl solo], Leo Jackson [gt], Velma Smith [gt], Bob Moore [bass], William Ackerman [drums], Marvin Hughes [vibes], Jean Slater [oboe], Robert Bays [french horn], Boots Randolph [saxophone], Byron Bach [violin], Brenton Banks [violin], Cecil Brower [violin], Solie Fott [violin], Lillian Vann Hunt [violin], Robert White [violin], and Anita Kerr Singers [vcl chorus]...Producer : Chet Atkins. Born James Travis Reeves in Galloway TX (1923 - 1964). Recorded From 1949 to 1964 Elected Posthumously to Country Music Hall of Fame in 1967 Texas Country Music Hall of Fame in 1998.
    https://wn.com/Jim_Reeves_(There'll_Be_Bluebirds_Over)_The_White_Cliffs_Of_Dover_(1963).
    The White Cliffs of Dover (Remastered 2014)
    2:53

    The White Cliffs of Dover (Remastered 2014)

    • Order:
    • Duration: 2:53
    • Uploaded Date: 22 Jun 2023
    • views: 302
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Remastered 2014) · Jim Reeves Welcome to My World ℗ 2023 Moonhoney Records Released on: 2023-06-23 Auto-generated by YouTube.
    https://wn.com/The_White_Cliffs_Of_Dover_(Remastered_2014)
    The White Cliffs of Dover
    2:53

    The White Cliffs of Dover

    • Order:
    • Duration: 2:53
    • Uploaded Date: 31 Mar 2022
    • views: 108
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover · Jim Reeves Fifty Fan Favourites ℗ 2021 Red Sky Records Released on: 2014-11-07 Auto-generated by YouTube.
    https://wn.com/The_White_Cliffs_Of_Dover
    [There'll Be Bluebirds Over] The White Cliffs of Dover
    2:54

    [There'll Be Bluebirds Over] The White Cliffs of Dover

    • Order:
    • Duration: 2:54
    • Uploaded Date: 26 Jan 2017
    • views: 30513
    Provided to YouTube by RCA Records Label [There'll Be Bluebirds Over] The White Cliffs of Dover · Jim Reeves The International Jim Reeves ℗ Originally released 1963. All rights reserved by Sony Music Entertainment Released on: 1963-10-08 Composer, Lyricist: Walter Kent Composer, Lyricist: Cliff Burton Producer: Chet Atkins Auto-generated by YouTube.
    https://wn.com/There'll_Be_Bluebirds_Over_The_White_Cliffs_Of_Dover
    Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover
    3:08

    Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover

    • Order:
    • Duration: 3:08
    • Uploaded Date: 30 Jan 2021
    • views: 1378
    Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover
    https://wn.com/Jim_Reeves_There'll_Be_Blue_Birds_Over_The_White_Cliffs_Of_Dover
    Jim Reeves: The white cliffs of Dover. (1960).
    2:53

    Jim Reeves: The white cliffs of Dover. (1960).

    • Order:
    • Duration: 2:53
    • Uploaded Date: 29 Aug 2023
    • views: 158
    Are you interrested in Dutch, Flemish,French, English German ore foreighn popular music, from the period from about 1900 till 1960 please subscribe my channel, you can heare many thousands of records all from my own collection ! Sorry for the sometimes poor soundquality ! Greetings from Henk !!!!!
    https://wn.com/Jim_Reeves_The_White_Cliffs_Of_Dover._(1960).
    The White Cliffs of Dover (Digitally Remastered)
    2:53

    The White Cliffs of Dover (Digitally Remastered)

    • Order:
    • Duration: 2:53
    • Uploaded Date: 31 Mar 2022
    • views: 84
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Digitally Remastered) · Jim Reeves The Greatest Hits - 80 Tracks Digitally Remastered ℗ 2021 Red Sky Records Released on: 2014-06-13 Auto-generated by YouTube.
    https://wn.com/The_White_Cliffs_Of_Dover_(Digitally_Remastered)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Jim Reeves "The White Cliffs Of Dover"

    "(There'll Be Blue Birds Over) The White Cliffs Of Dover", beautiful 1960's memory countryballad by Jim still available on many hit compilation albums. http://www.facebook.com/coyotejack1965
    2:56
    Jim Reeves "The White Cliffs Of Dover"
    "(There'll Be Blue Birds Over) The White Cliffs Of Dover", beautiful 1960's memory country...
    published: 01 Feb 2012
    Play in Full Screen
    2:53
    Jim Reeves - (There'll Be Bluebirds Over) The White Cliffs Of Dover (1963).
    (Written by Nat Burton - Walter Kent) Recorded 1941 by Glenn Miller MADE FAMOUS by Vera L...
    published: 11 Sep 2021
    Play in Full Screen
    2:53
    The White Cliffs of Dover (Remastered 2014)
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Remastered 2014) · ...
    published: 22 Jun 2023
    Play in Full Screen
    2:53
    The White Cliffs of Dover
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover · Jim Reeves Fifty ...
    published: 31 Mar 2022
    Play in Full Screen
    2:54
    [There'll Be Bluebirds Over] The White Cliffs of Dover
    Provided to YouTube by RCA Records Label [There'll Be Bluebirds Over] The White Cliffs of...
    published: 26 Jan 2017
    Play in Full Screen
    3:08
    Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover
    Jim Reeves - [There'll Be Blue Birds Over] The White Cliffs Of Dover
    published: 30 Jan 2021
    Play in Full Screen
    2:53
    Jim Reeves: The white cliffs of Dover. (1960).
    Are you interrested in Dutch, Flemish,French, English German ore foreighn popular music, f...
    published: 29 Aug 2023
    Play in Full Screen
    2:53
    The White Cliffs of Dover (Digitally Remastered)
    Provided to YouTube by Xelon Entertainment The White Cliffs of Dover (Digitally Remastere...
    published: 31 Mar 2022
    Play in Full Screen

    Jim Reeves

    James Travis "Jim" Reeves (August 20, 1923  July 31, 1964) was an American country and popular music singer-songwriter. With records charting from the 1950s to the 1980s, he became well known as a practitioner of the Nashville sound (a mixture of older country-style music with elements of popular music). Known as "Gentleman Jim", his songs continued to chart for years after his death. Reeves died in the crash of a private airplane. He is a member of both the Country Music and Texas Country Music Halls of Fame.

    Biography

    Early life and education

    Reeves was born in Galloway, Texas, a small rural community near Carthage. Winning an athletic scholarship to the University of Texas, he enrolled to study speech and drama, but quit after only six weeks to work in the shipyards in Houston. Soon he resumed baseball, playing in the semi-professional leagues before contracting with the St. Louis Cardinals "farm" team during 1944 as a right-handed pitcher. He played for the minor leagues for three years before severing his sciatic nerve while pitching, which ended his athletic career.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×