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

Chris-Cross

Christopher Hodgson, also known as Chris Cross, is an English contortionist, magician and escapologist. He was born in 1989 in Newcastle-Upon-Tyne, England.

Performing

Early years

At age 16, he finished school to try to become a full-time entertainer.

Career

A regular on the Independent Festival scene, Chris has performed at numerous events across the country, including BOMFest,

Chris performs Cabaret Acts, he won the junior section UK Cabaret Championship ‘Beat the Wand’ Trophy at the ‘Blackpool Magic Convention’ in 2009. He was also nominated for young businessman and entrepreneur of the year by the Evening Chronicle Newspaper, but failed to win the title.

In August 2010 Chris returned to the Edinburgh Fringe Festival with his 15 night One-Man Stand-Up Comedy Contortion & Escape show at the Voodoo Rooms. He returned to the Edinburgh Fringe Festival in 2011 with his show "Chris Cross is Escaping from Reality", again at the Voodoo Rooms.

He performed a basic Upside Down Straitjacket Escape suspended from a crane over the Newport River in Wales at the Big Splash Festival. He also performed at the Jongleurs/Highlight comedy clubs with Bob Slayer’s ‘Rock & Roll Circus’ in December 2010.

Chris Cross

Chris Cross (born Christopher Thomas Allen, 14 July 1952, Tottenham, London, England) is an English musician, best known as the bass guitarist in the new wave band Ultravox.

Biography

Early years

Cross went to Belmont Secondary Modern School, William Forster Comprehensive. He began his music career playing in different bands, in Tottenham, North London, with his major early influences being Small Faces, Desmond Dekker, The Crazy World of Arthur Brown.

Later he joined Stoned Rose, in Preston, Lancashire, alongside Pete Hughes and Mick Carroll, who later went to form Ritzi, but also decided to go to college to study psychology, a longstanding interest.

Tiger Lily and Ultravox

In 1973, he returned to London to go to Art College and began studying Art and Psychology. Meanwhile, he also answered the ad for members to form a new band, put by in Dennis Leigh, an art student in London, thus forming Tiger Lily along with guitarist Stevie Shears, drummer Warren Cann joined shortly and violinist/keyboardist Billy Currie added the next year. During the Tiger Lily phase he began to name himself Chris St. John.

Chris Cross (TV series)

Chris Cross is a children's sitcom co-produced by Central TV and Cinar, in association with Showtime, in 1993. Based in an English boarding school, it dealt with the transition from single to mixed-sex, and the rivalry between two male characters. It was filmed on location at Thoresby Hall, Nottinghamshire, England. It starred Canadian actress Rachel Blanchard, as the character Dinah.

References

  • "BBC - Comedy Guide - Chris Cross". Web.archive.org. Retrieved 2013-08-15.

  • Chris Cross (Family Guy)

    "Chris Cross" is the thirteenth episode of the eleventh season and the 201st overall episode of the animated comedy series Family Guy. It aired on Fox in the United States on February 17, 2013, and is written by Anthony Blasucci and Mike Desilets and directed by Jerry Langford. The episode revolves around Chris doing Meg's chores after she catches him in the act stealing money from Lois. Meanwhile, Stewie and Brian become fans of Canadian singer Anne Murray, who guest stars in the episode as herself.

    Plot

    When Chris is teased at school for his no-name Latvian sneakers, he asks for money but is turned down by Lois. He steals money from Lois' purse while she is out, but Meg sees him and demands that he do as she asks or she will tell their parents. Chris initially agrees, but when he learns that Meg never intends to let up on the demands, he runs away to Herbert's house. Meg is forced to conceal the fact that Chris ran away while Herbert finds that life with Chris is not all he fantasized about. When Chris pushes things too far by making a mess and refusing to get ready for a night out, Herbert kicks him out. Chris finds Meg looking for him. She apologizes and admits she missed him and Chris admits that they need each other to cope in the family. Herbert watches as they hug and he drives away to cry about their "break up" to some friends.

    Chris Cross (disambiguation)

    Chris Cross is bassist for the UK band Ultravox.

    Chris Cross may also refer to:

  • Chris-Cross (born 1989), comedy contortionist, magician and escapologist
  • ChrisCross, American comic book artist
  • Christopher Cross (born 1951), American singer and songwriter
  • Christopher Cross (album), his debut album
  • Kris Kross, rap duo
  • Christopher Cross, character from the film Scarlet Street
  • Chris Cross (TV series), a 1993 UK television comedy series
  • "Chris Cross" (Family Guy), an episode of Family Guy
  • See also

  • Criss Cross (disambiguation)
  • Chris Griffin (Christopher Cross Griffin), a character from Family Guy

  • Academy Awards

    The Academy Awards, or "Oscars", is an annual American awards ceremony hosted by the Academy of Motion Picture Arts and Sciences to recognise excellence in cinematic achievements in the film industry as assessed by the Academy's voting membership. The various category winners are awarded a copy of a statuette, officially called the Academy Award of Merit, which has become commonly known by its nickname "Oscar". The awards, first presented in 1929 at the Hollywood Roosevelt Hotel, are overseen by the Academy of Motion Picture Arts and Sciences (AMPAS).

    The awards ceremony was first broadcast to radio in 1930 and televised in 1953. It is now seen live in more than 200 countries and can be streamed live online. The Oscars is the oldest entertainment awards ceremony; its equivalents, the Emmy Awards for television, the Tony Awards for theatre, and the Grammy Awards for music and recording, are modeled after the Academy Awards.

    88th Academy Awards

    The 88th Academy Awards ceremony will be held at the Dolby Theatre on February 28, 2016 and hosted by Chris Rock. A total of 2,947 Oscars have been awarded since the inception of the award through the 87th. The 88th awards ceremony has become the target of a potential boycott, based on critics' perception that its all-white acting nominee list reflects bias. In response, the Academy has initiated "historic" changes in membership by the year 2020.

    Podcasts:

    • Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]

      Official music video of “Arthur's Theme (Best That You Can Do)” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Written by Christopher Cross, Burt Bacharach, Carole Bayer Sager, and Peter Allen, "Arthur's Theme (Best That You Can Do)" is the title theme from the1981 film Arthur starring Dudley Moore and Liza Minnelli. The song won an Oscar for Best Original Song and spent 3 weeks at #1 on the Billboard Hot 100. Peter Allen came up with the chorus lyric "When you get caught between the moon and New York City" while his plane was in a holding pattern during a night arrival at John F. Kennedy International Airport. Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seek...

      published: 26 Jun 2023
    • Christopher Cross - Sailing (Official Music Video) [Remastered HD]

      Official music video of “Sailing” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist Sailing was recorded in 1979, utilizing the 3M Digital Recording System, making it one of the first digitally recorded songs to chart. It reached number one on the Billboard Hot 100 chart on August 30, 1980. The song won Grammy Awards for Record of the Year, Song of the Year, and Arrangement of the Year, and helped Cross win the Best New Artist award. Produced by Michael Omartian, it features Tommy Taylor on drums, Andy Salmon on bass, Rob Meurer on electric piano, and Victor Feldman on percussion. In 1980, Sailing was released as...

      published: 20 Apr 2023
    • Kris Kross - Jump (Official Video)

      "Jump" by Kris Kross Listen to Kris Kross: https://kriskross.lnk.to/listenYD Watch more Kris Kross videos: https://kriskross.lnk.to/listenYD/youtube Subscribe to the official Kris Kross YouTube channel: https://kriskross.lnk.to/subscribeYD Lyrics: (Jump Jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) Uh huh, uh huh (Jump jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) #Jump #KrisKross #OfficialVideo

      published: 25 Sep 2010
    • Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]

      This is The Best of Christopher Cross (cristopercross). A greatest hits playlist featuring Cross' iconic hits "Sailing", "Arthur's Theme (Best That You Can Do) [New York City Song]", "Ride Like The Wind", "Think Of Laura", "I Will (Take You Forever)", "All Right (Pingüino Rodríguez)" and many more. Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist BEST OF CHRISTOPHER CROSS TRACKLIST 00:00 Sailing 04:17 Arthur's Theme (Best That You Can Do) [New York City Song] / Tema de Arturo 08:09 Ride Like The Wind / Run Like The Wind 12:40 Never Be The Same 17:23 All Right (Pingüino Rodríguez) 21:41 Think Of Laura 25:06 With Me Now 29:43 I Will (Take You Forever) 33:39 Talking In My Sleep 37:16 Swept Away 41:38 Open Up My Window 45:49 Is There Something 50:43 In The Blin...

      published: 30 Jan 2024
    • Christopher Cross - Ride Like the Wind (Official Lyric Video)

      Official lyric video of “Ride Like the Wind” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist From the 1979 album “Christopher Cross” Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ LYRICS It is the night My body's weak I'm on the run No time to sleep...

      published: 13 Apr 2023
    • Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Live

      Christopher Cross live in 2016 concert performs Sailing from five-time Grammy-winning self-titled 1979 debut album. VH1 named Sailing the greatest "softsational soft rock" song of all time and was a number-one single on the US Billboard Hot 100 chart in 1980. All Right (4:33) , Think of Laura (6:25) and Arthur's Theme (Best That You Can Do) (9:18) follows. All three are from singer-songwriter's 1983 second album Another Page. For other Christopher Cross debut album hits Never Be The Same and Ride Like The Wind, please go to https://youtu.be/KteEKAHvRNk Christopher Cross made history with his 1980 self-titled debut album by winning —for the first time ever—the four most prestigious awards: Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also for “Sai...

      published: 19 Mar 2017
    • Christopher Cross - Sailing (Official Audio)

      You're listening to the official audio for Christopher Cross - "Sailing" from his debut album 'Christopher Cross'. "Sailing" reached No. 1 on the Billboard Hot 100 in 1980 and won the Grammy Awards for Record of the Year, Song of the Year, and Best Arrangement Accompanying Vocalist(s). Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records htt...

      published: 26 Apr 2019
    • Christopher Cross - Ride Like The Wind

      From the CD Album "The Very Best of Christopher Cross", Music & Lyrics By Christopher Cross

      published: 23 Dec 2012
    • AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Cross

      VCD Title: Requested Songs For You, Volume 2 VCD Released: July 18, 2001 VCD Catalogue: 17-20155-5 Label: Star Recording Inc./ABS-CBN Film Productions Inc. (Star Music/ABS-CBN Music)

      published: 16 Sep 2024
    • Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)

      Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video) Christopher Maurice Brown (born May 5, 1989) is an American singer, songwriter, dancer, actor and entrepreneur. Born in Tappahannock, Virginia, he was involved in his church choir and several local talent shows from a young age. Having signed with Jive Records in 2004, Brown released his self-titled debut studio album the following year. It peaked at number two on the US Billboard 200 and was later certified double platinum by the Recording Industry Association of America (RIAA), selling an overall three million copies worldwide.[1] With his first single "Run It!" peaking atop the US Billboard Hot 100, Brown became the first male artist as a lead since Diddy in 1997 to have his debut single top the chart. His second album...

      published: 03 Aug 2019
    Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]
    3:51

    Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]

    • Order:
    • Duration: 3:51
    • Uploaded Date: 26 Jun 2023
    • views: 41987900
    Official music video of “Arthur's Theme (Best That You Can Do)” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Written by Christopher Cross, Burt Bacharach, Carole Bayer Sager, and Peter Allen, "Arthur's Theme (Best That You Can Do)" is the title theme from the1981 film Arthur starring Dudley Moore and Liza Minnelli. The song won an Oscar for Best Original Song and spent 3 weeks at #1 on the Billboard Hot 100. Peter Allen came up with the chorus lyric "When you get caught between the moon and New York City" while his plane was in a holding pattern during a night arrival at John F. Kennedy International Airport. Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ LYRICS Once in your life you'll find her Someone who turns your heart around And next thing you know You're closin' down the town Wake up and she's still with you Even though you left her way across town You're wonderin' to yourself Hey what've I found When you get caught between the moon and New York City I know it's crazy but it's true If you get caught between the moon and New York City The best that you can do (the best that you can do) The best that you can do is fall in love Arthur he does what he pleases All of his life his master's toys And deep in his heart He's just he's just a boy Livin' his life one day at a time He's showing himself a really good time He's laughin' about the way They want him to be When you get caught between the moon and New York City I know it's crazy but it's true If you get caught between the moon and New York City The best that you can do (the best that you can do) The best that you can do is fall in love ABOUT CHRISTOPHER CROSS Christopher Cross burst onto the music scene with his 1979 self-titled debut album produced by Michael Omartian. The lead single “Ride Like The Wind” spent 4 weeks at #2 on the Billboard Hot 100 chart, and was quickly followed up by Cross’ most popular single to date (and first #1 hit) “Sailing”, which later became known as the archetype for the Yacht Rock genre. In 1981, Cross became the first artist in Grammy history to win the “Big Four” most prestigious awards in a single night; Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also “Sailing”), and Best New Artist. Later that year Cross released “Arthur’s Theme (Best That You Can Do)” which he co-wrote with Burt Bacharach, Carole Bayer, Peter Allen, and was the title-theme for the 1981 film “Arthur” starring Dudley Moorre and Liza Minnelli. The song earned Cross his second #1 and the Oscar for Best Original Song at the 1981 Academy Awards. Cross’ sophomore album “Another Page” was released in 1983 and featured the singles “Think of Laura” and “All Right”. Cross has sold over 10M albums worldwide and his songs have been covered and sampled by NSYNC, Puff Daddy, Avant, Shirley Bassey, Dione Warwick, and many more.
    https://wn.com/Christopher_Cross_Arthur's_Theme_(Best_That_You_Can_Do)_(Official_Music_Video)_Remastered_Hd
    Christopher Cross - Sailing (Official Music Video) [Remastered HD]
    4:18

    Christopher Cross - Sailing (Official Music Video) [Remastered HD]

    • Order:
    • Duration: 4:18
    • Uploaded Date: 20 Apr 2023
    • views: 63336082
    Official music video of “Sailing” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist Sailing was recorded in 1979, utilizing the 3M Digital Recording System, making it one of the first digitally recorded songs to chart. It reached number one on the Billboard Hot 100 chart on August 30, 1980. The song won Grammy Awards for Record of the Year, Song of the Year, and Arrangement of the Year, and helped Cross win the Best New Artist award. Produced by Michael Omartian, it features Tommy Taylor on drums, Andy Salmon on bass, Rob Meurer on electric piano, and Victor Feldman on percussion. In 1980, Sailing was released as a single in Latin America under the translated (en español) title "Navegando". On the Howard Stern radio show, Cross explained that sailing with his friend got him away from the trials and tribulations of being a teenager. Cross said that if the guy had taken him bowling and he enjoyed it, the song could have become "Bowling." This live video was recorded at Warner Amigo Studios in 1980 and featured a live audio cut (different from the one featured in this upload) for use where the band would be lip-syncing on television, to be more realistic than the missing orchestra. This footage has been digitally enhanced to HD quality and features audio from the 2019 remaster of Cross' 1979 debut self-titled album: Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ LYRICS Well, it's not far down to paradise At least it's not for me And if the wind is right you can sail away And find tranquility Oh, the canvas can do miracles Just you wait and see Believe me It's not far to never never land No reason to pretend And if the wind is right you can find the joy Of innocence again Oh, the canvas can do miracles Just you wait and see Believe me Sailing Takes me away to where I've always heard it could be Just a dream and the wind to carry me Soon I will be free Fantasy It gets the best of me When I'm sailing All caught up in the reverie Every word is a symphony Won't you believe me? Sailing Takes me away to where I've always heard it could be Just a dream and the wind to carry me And soon I will be free [Instrumental Bridge] Well, it's not far back to sanity At least it's not for me And if the wind is right you can sail away And find serenity Oh, the canvas can do miracles Just you wait and see Really, believe me Sailing Takes me away to where I've always heard it could be Just a dream and the wind to carry me And soon I will be free ABOUT CHRISTOPHER CROSS Christopher Cross burst onto the music scene with his 1979 self-titled debut album produced by Michael Omartian. The lead single “Ride Like The Wind” spent 4 weeks at #2 on the Billboard Hot 100 chart, and was quickly followed up by Cross’ most popular single to date (and first #1 hit) “Sailing”, which later became known as the archetype for the Yacht Rock genre. In 1981, Cross became the first artist in Grammy history to win the “Big Four” most prestigious awards in a single night; Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also “Sailing”), and Best New Artist. Later that year Cross released “Arthur’s Theme (Best That You Can Do)” which he co-wrote with Burt Bacharach, Carole Bayer, Peter Allen, and was the title-theme for the 1981 film “Arthur” starring Dudley Moorre and Liza Minnelli. The song earned Cross his second #1 and the Oscar for Best Original Song at the 1981 Academy Awards. Cross’ sophomore album “Another Page” was released in 1983 and featured the singles “Think of Laura” and “All Right”. Cross has sold over 10M albums worldwide and his songs have been covered and sampled by NSYNC, Puff Daddy, Avant, Shirley Bassey, Dione Warwick, and many more.
    https://wn.com/Christopher_Cross_Sailing_(Official_Music_Video)_Remastered_Hd
    Kris Kross - Jump (Official Video)
    3:18

    Kris Kross - Jump (Official Video)

    • Order:
    • Duration: 3:18
    • Uploaded Date: 25 Sep 2010
    • views: 167837387
    "Jump" by Kris Kross Listen to Kris Kross: https://kriskross.lnk.to/listenYD Watch more Kris Kross videos: https://kriskross.lnk.to/listenYD/youtube Subscribe to the official Kris Kross YouTube channel: https://kriskross.lnk.to/subscribeYD Lyrics: (Jump Jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) Uh huh, uh huh (Jump jump) The Mac Dad'll make ya (Jump jump) The Daddy Mac'll make ya (Jump jump) Kris Kross'll make ya (Jump jump) #Jump #KrisKross #OfficialVideo
    https://wn.com/Kris_Kross_Jump_(Official_Video)
    Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]
    1:02:14

    Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]

    • Order:
    • Duration: 1:02:14
    • Uploaded Date: 30 Jan 2024
    • views: 4157904
    This is The Best of Christopher Cross (cristopercross). A greatest hits playlist featuring Cross' iconic hits "Sailing", "Arthur's Theme (Best That You Can Do) [New York City Song]", "Ride Like The Wind", "Think Of Laura", "I Will (Take You Forever)", "All Right (Pingüino Rodríguez)" and many more. Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist BEST OF CHRISTOPHER CROSS TRACKLIST 00:00 Sailing 04:17 Arthur's Theme (Best That You Can Do) [New York City Song] / Tema de Arturo 08:09 Ride Like The Wind / Run Like The Wind 12:40 Never Be The Same 17:23 All Right (Pingüino Rodríguez) 21:41 Think Of Laura 25:06 With Me Now 29:43 I Will (Take You Forever) 33:39 Talking In My Sleep 37:16 Swept Away 41:38 Open Up My Window 45:49 Is There Something 50:43 In The Blink Of An Eye 55:05 Say You'll Be Mine 58:01 The Light Is On Christopher Cross burst onto the music scene with his 1979 self-titled debut album produced by Michael Omartian. The lead single “Ride Like The Wind” spent 4 weeks at #2 on the Billboard Hot 100 chart, and was quickly followed up by Cross’ most popular single to date (and first #1 hit) “Sailing”, which later became known as the archetype for the Yacht Rock genre. In 1981, Cross became the first artist in Grammy history to win the “Big Four” most prestigious awards in a single night; Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also “Sailing”), and Best New Artist. Later that year Cross released “Arthur’s Theme (Best That You Can Do)” which he co-wrote with Burt Bacharach, Carole Bayer, Peter Allen, and was the title-theme for the 1981 film “Arthur” starring Dudley Moorre and Liza Minnelli. The song earned Cross his second #1 and the Oscar for Best Original Song at the 1981 Academy Awards. Cross’ sophomore album “Another Page” was released in 1983 and featured the singles “Think of Laura” and “All Right”. Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe STREAM CHRISTOPHER CROSS Taken from Christopher Cross’ 1979 self-titled debut album: Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ #christophercross #sailing #yachtrock クリストファークロス ニューヨークシティセレナーデ
    https://wn.com/Christopher_Cross_The_Best_Of_Greatest_Hits_Playlist_This_Is_Christopher_Cross
    Christopher Cross - Ride Like the Wind (Official Lyric Video)
    4:31

    Christopher Cross - Ride Like the Wind (Official Lyric Video)

    • Order:
    • Duration: 4:31
    • Uploaded Date: 13 Apr 2023
    • views: 5655685
    Official lyric video of “Ride Like the Wind” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Sign up to Christopher Cross HQ's Mailing List: https://seeker.fm/ccmailinglist From the 1979 album “Christopher Cross” Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ LYRICS It is the night My body's weak I'm on the run No time to sleep I've got to ride Ride like the wind To be free again And I've got such a long way to go To make it to the border of Mexico So I'll ride like the wind Ride like the wind I was born the son of a lawless man Always spoke my mind with a gun in my hand Lived nine lives Gunned down ten Gonna ride like the wind And I've got such a long way to go To make it to the border of Mexico So I'll ride like the wind Ride like the wind Accused and tried and told to hang I was nowhere in sight when the church bells rang Never was the kind to do as I was told Gonna ride like the wind before I get old It is the night My body's weak I'm on the run No time to sleep I've got to ride Ride like the wind To be free again And I've got such a long way to go To make it to the border of Mexico So I'll ride like the wind Ride like the wind And I've got a long way to go To make it to the border of Mexico So I'll ride like the wind Ride like the wind Gonna ride like the wind Ride Gonna ride like the wind Gonna ride ABOUT CHRISTOPHER CROSS Christopher Cross burst onto the music scene with his 1979 self-titled debut album produced by Michael Omartian. The lead single “Ride Like The Wind” spent 4 weeks at #2 on the Billboard Hot 100 chart, and was quickly followed up by Cross’ most popular single to date (and first #1 hit) “Sailing”, which later became known as the archetype for the Yacht Rock genre. In 1981, Cross became the first artist in Grammy history to win the “Big Four” most prestigious awards in a single night; Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also “Sailing”), and Best New Artist. Later that year Cross released “Arthur’s Theme (Best That You Can Do)” which he co-wrote with Burt Bacharach, Carole Bayer, Peter Allen, and was the title-theme for the 1981 film “Arthur” starring Dudley Moorre and Liza Minnelli. The song earned Cross his second #1 and the Oscar for Best Original Song at the 1981 Academy Awards. Cross’ sophomore album “Another Page” was released in 1983 and featured the singles “Think of Laura” and “All Right”. Cross has sold over 10M albums worldwide and his songs have been covered and sampled by NSYNC, Puff Daddy, Avant, Shirley Bassey, Dione Warwick, and many more.
    https://wn.com/Christopher_Cross_Ride_Like_The_Wind_(Official_Lyric_Video)
    Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Live
    11:30

    Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Live

    • Order:
    • Duration: 11:30
    • Uploaded Date: 19 Mar 2017
    • views: 35635546
    Christopher Cross live in 2016 concert performs Sailing from five-time Grammy-winning self-titled 1979 debut album. VH1 named Sailing the greatest "softsational soft rock" song of all time and was a number-one single on the US Billboard Hot 100 chart in 1980. All Right (4:33) , Think of Laura (6:25) and Arthur's Theme (Best That You Can Do) (9:18) follows. All three are from singer-songwriter's 1983 second album Another Page. For other Christopher Cross debut album hits Never Be The Same and Ride Like The Wind, please go to https://youtu.be/KteEKAHvRNk Christopher Cross made history with his 1980 self-titled debut album by winning —for the first time ever—the four most prestigious awards: Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also for “Sailing”), and Best New Artist. He co-wrote "Arthur's Theme (Best That You Can Do)" with Burt Bacharach, Carol Bayer Sager and Peter Allen, which won an Oscar for Best Original Song in 1981. Song is best known for line "when you get lost between the moon and New York City, the best that you can do is fall in love." --- Los Angeles Times excerpt: "Everything I touched turned to gold back then," says Christopher Cross. "I was thinking, 'Hey, I've got everybody fooled into thinking I'm good.' Winning all those Grammys was tough, because it fostered some resentment, like, 'Who is this newcomer to win all these awards?' It was a tremendous burden for me to try and follow up that success. It weighed heavily on my soul, and affected the quality of my work." Indeed, Cross made four albums from 1984 to 1994, which together sold a mere fraction of his debut. "My success was so meteoric that it put me on a perch I found hard to stay on," says the singer, who lives in Montecito, Santa Barbara County, CA. --- This small portion of the edited concert is for reporting, promoting and supporting the entire original public broadcast DVD content.
    https://wn.com/Christopher_Cross_Sailing_All_Right_Think_Of_Laura_Arthur's_Theme_Live
    Christopher Cross - Sailing (Official Audio)
    4:16

    Christopher Cross - Sailing (Official Audio)

    • Order:
    • Duration: 4:16
    • Uploaded Date: 26 Apr 2019
    • views: 20396610
    You're listening to the official audio for Christopher Cross - "Sailing" from his debut album 'Christopher Cross'. "Sailing" reached No. 1 on the Billboard Hot 100 in 1980 and won the Grammy Awards for Record of the Year, Song of the Year, and Best Arrangement Accompanying Vocalist(s). Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.com/ RHINO is the official YouTube channel of the greatest music catalog in the world. Founded in 1978, Rhino is the world's leading pop culture label specializing in classic rock, soul, and 80's and 90's alternative. The vast Rhino catalog of more than 5,000 albums, videos, and hit songs features material by Warner Music Group artists such as Van Halen, Madonna, Duran Duran, Aretha Franklin, Ray Charles, The Doors, Chicago, Black Sabbath, John Coltrane, Yes, Alice Cooper, Linda Ronstadt, The Ramones, The Monkees, Carly Simon, and Curtis Mayfield, among many others. Check back for classic music videos, live performances, hand-curated playlists, the Rhino Podcast, and more!
    https://wn.com/Christopher_Cross_Sailing_(Official_Audio)
    Christopher Cross - Ride Like The Wind
    6:37

    Christopher Cross - Ride Like The Wind

    • Order:
    • Duration: 6:37
    • Uploaded Date: 23 Dec 2012
    • views: 4226202
    From the CD Album "The Very Best of Christopher Cross", Music & Lyrics By Christopher Cross
    https://wn.com/Christopher_Cross_Ride_Like_The_Wind
    AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Cross
    4:12

    AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Cross

    • Order:
    • Duration: 4:12
    • Uploaded Date: 16 Sep 2024
    • views: 18
    VCD Title: Requested Songs For You, Volume 2 VCD Released: July 18, 2001 VCD Catalogue: 17-20155-5 Label: Star Recording Inc./ABS-CBN Film Productions Inc. (Star Music/ABS-CBN Music)
    https://wn.com/Avseq09_Arthur's_Theme_(Best_That_You_Can_Do)_Christopher_Cross
    Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)
    3:22

    Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)

    • Order:
    • Duration: 3:22
    • Uploaded Date: 03 Aug 2019
    • views: 257367
    Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video) Christopher Maurice Brown (born May 5, 1989) is an American singer, songwriter, dancer, actor and entrepreneur. Born in Tappahannock, Virginia, he was involved in his church choir and several local talent shows from a young age. Having signed with Jive Records in 2004, Brown released his self-titled debut studio album the following year. It peaked at number two on the US Billboard 200 and was later certified double platinum by the Recording Industry Association of America (RIAA), selling an overall three million copies worldwide.[1] With his first single "Run It!" peaking atop the US Billboard Hot 100, Brown became the first male artist as a lead since Diddy in 1997 to have his debut single top the chart. His second album Exclusive (2007) spawned his second Hot 100 number one "Kiss Kiss", in addition to "With You" and "Forever". The album was also certified double platinum by the RIAA. In addition to his solo commercial success, Brown has been featured on several singles such as "No Air", a duet with singer Jordin Sparks, "Shortie Like Mine" with the rapper Bow Wow and "Shawty Get Loose" alongside Lil Mama and T-Pain. The songs have peaked at number three, number nine, number ten and eight on the US Billboard Hot 100 respectively. His third album Graffiti was released later that year, and included the top-twenty single "I Can Transform Ya". Brown's fourth album F.A.M.E. (2011) became his first to top the Billboard 200; it spawned the singles "Yeah 3x", "Look at Me Now", and "Beautiful People". F.A.M.E. earned Brown his first Grammy Award for Best R&B Album at the 54th Grammy Awards. His fifth album Fortune was released in 2012, with X, Royalty and Heartbreak on a Full Moon being released the following years, all peaking in the top 5 on the Billboard 200 charts.[6] His ninth studio album Indigo was released in 2019 and debuted at number 1 on the US Billboard 200, making it his third number-one album in the country.
    https://wn.com/Chris_Brown_Kriss_Kross_Ft.Tj_Luva_Young_Blacc_(Lyric_Video)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]
      3:51
      Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]remove from playlist
    • Christopher Cross - Sailing (Official Music Video) [Remastered HD]
      4:18
      Christopher Cross - Sailing (Official Music Video) [Remastered HD]remove from playlist
    • Kris Kross - Jump (Official Video)
      3:18
      Kris Kross - Jump (Official Video)remove from playlist
    • Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]
      1:02:14
      Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]remove from playlist
    • Christopher Cross - Ride Like the Wind (Official Lyric Video)
      4:31
      Christopher Cross - Ride Like the Wind (Official Lyric Video)remove from playlist
    • Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Live
      11:30
      Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Liveremove from playlist
    • Christopher Cross - Sailing (Official Audio)
      4:16
      Christopher Cross - Sailing (Official Audio)remove from playlist
    • Christopher Cross - Ride Like The Wind
      6:37
      Christopher Cross - Ride Like The Windremove from playlist
    • AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Cross
      4:12
      AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Crossremove from playlist
    • Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)
      3:22
      Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)remove from playlist
    PLAYLIST TIME: 0:00 / 1:48:09

    Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]

    Official music video of “Arthur's Theme (Best That You Can Do)” by Christopher Cross Subscribe to the Christopher Cross YouTube channel and tap the bell to turn on notifications: https://seeker.fm/ccsubscribe Written by Christopher Cross, Burt Bacharach, Carole Bayer Sager, and Peter Allen, "Arthur's Theme (Best That You Can Do)" is the title theme from the1981 film Arthur starring Dudley Moore and Liza Minnelli. The song won an Oscar for Best Original Song and spent 3 weeks at #1 on the Billboard Hot 100. Peter Allen came up with the chorus lyric "When you get caught between the moon and New York City" while his plane was in a holding pattern during a night arrival at John F. Kennedy International Airport. Spotify: https://seeker.fm/christophercross/spotify Apple Music: https://seeker.fm/christophercross/apple Amazon Music: https://seeker.fm/christophercross/amazon Other Streaming Services: https://seeker.fm/christophercross FOLLOW CHRISTOPHER CROSS Instagram: https://seeker.fm/ccinstagram Twitter: https://seeker.fm/cctwitter Facebook: https://seeker.fm/ccfacebook Website: https://www.christophercross.com/ LYRICS Once in your life you'll find her Someone who turns your heart around And next thing you know You're closin' down the town Wake up and she's still with you Even though you left her way across town You're wonderin' to yourself Hey what've I found When you get caught between the moon and New York City I know it's crazy but it's true If you get caught between the moon and New York City The best that you can do (the best that you can do) The best that you can do is fall in love Arthur he does what he pleases All of his life his master's toys And deep in his heart He's just he's just a boy Livin' his life one day at a time He's showing himself a really good time He's laughin' about the way They want him to be When you get caught between the moon and New York City I know it's crazy but it's true If you get caught between the moon and New York City The best that you can do (the best that you can do) The best that you can do is fall in love ABOUT CHRISTOPHER CROSS Christopher Cross burst onto the music scene with his 1979 self-titled debut album produced by Michael Omartian. The lead single “Ride Like The Wind” spent 4 weeks at #2 on the Billboard Hot 100 chart, and was quickly followed up by Cross’ most popular single to date (and first #1 hit) “Sailing”, which later became known as the archetype for the Yacht Rock genre. In 1981, Cross became the first artist in Grammy history to win the “Big Four” most prestigious awards in a single night; Record of the Year (for the single “Sailing”), Album of the Year, Song of the Year (also “Sailing”), and Best New Artist. Later that year Cross released “Arthur’s Theme (Best That You Can Do)” which he co-wrote with Burt Bacharach, Carole Bayer, Peter Allen, and was the title-theme for the 1981 film “Arthur” starring Dudley Moorre and Liza Minnelli. The song earned Cross his second #1 and the Oscar for Best Original Song at the 1981 Academy Awards. Cross’ sophomore album “Another Page” was released in 1983 and featured the singles “Think of Laura” and “All Right”. Cross has sold over 10M albums worldwide and his songs have been covered and sampled by NSYNC, Puff Daddy, Avant, Shirley Bassey, Dione Warwick, and many more.
    3:51
    Christopher Cross - Arthur's Theme (Best That You Can Do) (Official Music Video) [Remastered HD]
    Official music video of “Arthur's Theme (Best That You Can Do)” by Christopher Cross Subsc...
    published: 26 Jun 2023
    Play in Full Screen
    4:18
    Christopher Cross - Sailing (Official Music Video) [Remastered HD]
    Official music video of “Sailing” by Christopher Cross Subscribe to the Christopher Cross ...
    published: 20 Apr 2023
    Play in Full Screen
    3:18
    Kris Kross - Jump (Official Video)
    "Jump" by Kris Kross Listen to Kris Kross: https://kriskross.lnk.to/listenYD Watch more Kr...
    published: 25 Sep 2010
    Play in Full Screen
    1:02:14
    Christopher Cross: The Best Of [Greatest Hits Playlist: This Is Christopher Cross]
    This is The Best of Christopher Cross (cristopercross). A greatest hits playlist featuring...
    published: 30 Jan 2024
    Play in Full Screen
    4:31
    Christopher Cross - Ride Like the Wind (Official Lyric Video)
    Official lyric video of “Ride Like the Wind” by Christopher Cross Subscribe to the Christo...
    published: 13 Apr 2023
    Play in Full Screen
    11:30
    Christopher Cross Sailing/All Right/Think Of Laura/Arthur's Theme Live
    Christopher Cross live in 2016 concert performs Sailing from five-time Grammy-winning self...
    published: 19 Mar 2017
    Play in Full Screen
    4:16
    Christopher Cross - Sailing (Official Audio)
    You're listening to the official audio for Christopher Cross - "Sailing" from his debut al...
    published: 26 Apr 2019
    Play in Full Screen
    6:37
    Christopher Cross - Ride Like The Wind
    From the CD Album "The Very Best of Christopher Cross", Music & Lyrics By Christopher Cros...
    published: 23 Dec 2012
    Play in Full Screen
    4:12
    AVSEQ09 Arthur's Theme (Best That You Can Do) - Christopher Cross
    VCD Title: Requested Songs For You, Volume 2 VCD Released: July 18, 2001 VCD Catalogue: 17...
    published: 16 Sep 2024
    Play in Full Screen
    3:22
    Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video)
    Chris Brown - Kriss Kross ft.TJ Luva & Young Blacc (Lyric video) Christopher Maurice Br...
    published: 03 Aug 2019
    Play in Full Screen

    Chris-Cross

    Christopher Hodgson, also known as Chris Cross, is an English contortionist, magician and escapologist. He was born in 1989 in Newcastle-Upon-Tyne, England.

    Performing

    Early years

    At age 16, he finished school to try to become a full-time entertainer.

    Career

    A regular on the Independent Festival scene, Chris has performed at numerous events across the country, including BOMFest,

    Chris performs Cabaret Acts, he won the junior section UK Cabaret Championship ‘Beat the Wand’ Trophy at the ‘Blackpool Magic Convention’ in 2009. He was also nominated for young businessman and entrepreneur of the year by the Evening Chronicle Newspaper, but failed to win the title.

    In August 2010 Chris returned to the Edinburgh Fringe Festival with his 15 night One-Man Stand-Up Comedy Contortion & Escape show at the Voodoo Rooms. He returned to the Edinburgh Fringe Festival in 2011 with his show "Chris Cross is Escaping from Reality", again at the Voodoo Rooms.

    He performed a basic Upside Down Straitjacket Escape suspended from a crane over the Newport River in Wales at the Big Splash Festival. He also performed at the Jongleurs/Highlight comedy clubs with Bob Slayer’s ‘Rock & Roll Circus’ in December 2010.

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

    Latest News for: chris cross

    Edit

    La Crosse has elected its first-ever Black and openly LGBTQ+ mayor

    Milwaukee Journal Sentinel 03 Apr 2025
    In a historic win, Shaundel Washington-Spivey defeated City Council President Chris Kahlow in La Crosse's mayoral race this week, becoming the first Black mayor and first openly LGBTQ+ mayor in the city's history.
    Edit

    Luke Littler is a 10/11 favourite to win Night Nine of the Premier League Darts ...

    The Daily Mail 03 Apr 2025
    For those after an outsider in the market - Gerwyn Price and Rob Cross round out the five favourites in the market at 8/1 and 12/1 respectively ... It requires Littler to beat Humphries in the final ... Luke Littler 10/11 ... Rob Cross 12/1 ... Chris Dobey 28/1 ... .
    Edit

    Premier League Darts 2025: Night nine predictions, betting tips, acca, order of play and Sky Sports TV time

    Sporting Life 03 Apr 2025
    Luke Humphries (4/9) v Rob Cross (6/5) ... 5-6CLICK HERE to bet on Humphries v Cross with Sky Bet. Chris Dobey (9/2) v Luke Littler (1/8) ... pic.twitter.com/xUskIFi8m8— Chris Hammer (@ChrisHammer180) March 27, 2025.
    Edit

    Luke Littler schedule for Premier League Darts Night 9 in Berlin

    Yahoo Daily News 03 Apr 2025
    Littler will take on Chris Dobey in his quarter-final opener, having edged out the Bedlington star in a last-leg decider when the pair last met on Night 5&nbsp;in Brighton ... Luke Humphries v Rob Cross - 6.45pm. Chris Dobey v Luke Littler - 7.15pm.
    Edit

    Another Oregon men's basketball player reportedly enters the NCAA transfer portal

    Statesman Journal 03 Apr 2025
    He averaged 7.3 points and 3.2 rebounds ... Chris Hansen covers University of Oregon football, men’s basketball, track and field, cross country and softball for The Register-Guard.
    Edit

    No. 6 Oregon softball gets revenge and extends winning streak with a rout of Oregon State

    Statesman Journal 03 Apr 2025
    Elise Sokolsky pitched a one-hitter, Stefini Ma’ake homered and No ... Friday ... Watch ... Chris Hansen covers University of Oregon football, men’s basketball, track and field, cross country and softball for The Register-Guard.
    Edit

    How to watch Oregon softball vs. Michigan: Time, streaming, tournament info

    The Register Guard 03 Apr 2025
    The Big Ten Conference season rolls on for the No ... The Ducks have also had 28 steals during that stretch ... Michigan ... Chris Hansen covers University of Oregon football, men’s basketball, track and field, cross country and softball for The Register-Guard.
    Edit

    Texas A\u0026M basketball coaching candidates: Potential names for Aggies opening

    Usatoday 02 Apr 2025
    Chris Beard, Mississippi head coach. Ole Miss coach Chris Beard is an obvious choice for the Aggies ... Cross has ... Cross was also an assistant at TCU from 2018-19.Chris Jans, Mississippi State head coach.
    Edit

    MLB can wait: Oregon's Bryce Boettcher beefs up for final season of college football

    The Register Guard 02 Apr 2025
    Bryce Boettcher talks decision to return to Oregon football ... I still get in the cages because I miss it.” ... ... Chris Hansen covers University of Oregon football, men’s basketball, track and field, cross country and softball for The Register-Guard.
    Edit

    Everton line-ups for Liverpool as big Iliman Ndiaye and Carlos Alcaraz decisions made

    Yahoo Daily News 02 Apr 2025
    Pickford, O'Brien, Tarkowski, Branthwaite, Mykolenko; Lindstrom, Gueye, Alcaraz, Doucoure, Harrison; Beto.Chris Beesley. After 131 years of combat against Liverpool, Everton will ‘cross Stanley Park...
    Edit

    Defensive Coordinator Chris Ash Breaks Down The Notre Dame Defensive Line

    The Capital Journal 01 Apr 2025
    Chris Ash talked through the Notre Dame defensive line unit and cross training certain players ....
    Edit

    Role of Climate Change in LA Wildfires “Not Statistically Significant”, Says Report Author

    The Daily Sceptic 01 Apr 2025
    It is run by the frequent BBC broadcaster Dr Friederike Otto and has a number of international partners including the Royal Netherlands Meteorological Institute and the Red Cross Crescent Climate Centre.
    Edit

    38 Seacoast baseball players to watch from 13 high schools in 2025

    Foster's Daily Democrat 01 Apr 2025
    Thomas Aquinas head coach Carson Cross said ... “We will look for him to set the tone at the top of the lineup for us,” Cross said.Chris Balano, Traip Academy, senior, pitcher/infielder ... Thomas Aquinas head coach Carson Cross said.
    ×