- published: 18 Jun 2008
- views: 783975
'+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; })); }); -->
Anna Marie Wooldridge (August 6, 1930 – August 14, 2010), known by her stage name Abbey Lincoln, was an American jazz vocalist, songwriter, and actress, who wrote and performed her own compositions. She was a civil rights advocate during the 1960s.
Born in Chicago but raised in Calvin Center, Cass County, Michigan, Lincoln was one of many singers influenced by Billie Holiday. She often visited the Blue Note jazz club in New York City. Her debut album, Abbey Lincoln's Affair – A Story of a Girl in Love, was followed by a series of albums for Riverside Records. In 1960 she sang on Max Roach's landmark civil rights-themed recording, We Insist! Lincoln’s lyrics were often connected to the civil rights movement in America.
During the 1980s, Lincoln’s creative output was smaller and she released only a few albums during that decade. Her song "For All We Know" is featured in the 1989 film Drugstore Cowboy. During the 1990s and until her death, however, she fulfilled a 10-album contract with Verve Records. After a tour of Africa in the mid-1970s, she adopted the name Aminata Moseka.
Exactly Like You may refer to:
Exactly Like You was an LP album by The Ames Brothers, released in 1956 by RCA Victor Records, as catalog number LPM-1142.
"Exactly Like You" is a popular song, with music written by Jimmy McHugh and lyrics by Dorothy Fields, and published in 1930. The song was introduced by Harry Richman and Gertrude Lawrence in the 1930 Broadway show Lew Leslie's International Revue which also featured McHugh and Fields's "On the Sunny Side of the Street".
The song was featured in the opening credits of the 1982 black comedy film Eating Raoul. It was famously performed by Tom Jones on The Morecambe and Wise Show in 1971, with Eric and Ernie as backing singers ("Yeah Yeah Yeah!").
From the Album "Abbey Sings Abbey" (2007)
Presentation Jan Gheysen 00:00 We Insist! Freedom Now Suite: Intro 2:30 Driva Man 4:50 Triptych (Prayer/Protest/ Peace) 9:58 All Africa 19:09 Freedom Day 25:27 Lineup: Max Roach : drums Abbey Lincoln : vocals Clifford Jordan : tenor saxophone Coleridge Perkinson : piano Eddie Khan : bass
"Freedom Now Suite"Belgian TV BTR2 1964
Words & Music by Abbey Lincoln !! Opening track from the album : "You gotta pay the band" (featuring Stan Getz), 1991. *** facebook.com/musicwithnoborders *** Hank Jones - Piano Charlie Haden - Bass Stan Getz - Sax (Tenor) Maxine Roach - Viola Mark Johnson - Drums Abbey Lincoln - Vocals
Directed by : Patrick Savey LIKE this video and subscribe to Zycopolis Youtube Channel at : http://www.youtube.com/user/Zycopolis?sub_confirmation=1 Follow us on : facebook.com/zycopolis twitter.com/zycopolis zycopolis.tumblr.com pinterest.com/zycopolis vimeo.com/zycopolis zycopolis.tumblr.com zycopolis.com
"Freedom Now Suite" Belgian TV BTR2 1964
The songs : Down here below , Bird Alone , love is you , ce si bon . Enjoy this 22 minutes concert .
74
Abbey Lincoln Windmills of your mind
Abbey Lincoln - For All We Know
Track: 'I'll Like You' by ILLIT Watch the full album first listen on Patreon: https://www.patreon.com/posts/illit-ill-like-114423922?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=postshare_creator&utm_content=join_link Listen to the full album on Spotify: https://open.spotify.com/album/7CBwpeVQ27cWwyEYjByVH1?si=lTrOeqDSTZGqnUOIh-HOJg
Watch GIGS on Samsung TV Plus: https://www.samsungtvplus.com?action=play&target_tab=discover&target_id=GBBD3000004VR&target_type=1 Diana Krall - Exactly Like You (Live In Rio) Available Now: https://mercury-studios.lnk.to/DianaKrallRio Diana Krall has had a long time fascination with bossa nova, a type of music which perfectly suits her sophisticated yet sensual style. This culminated in her new studio album Quiet Nights (released by Verve in spring 2009) and in this stunning concert filmed in the home of the bossa nova, Rio de Janeiro, in November 2008. Accompanied by her band and an orchestra, Diana Krall delivers a superb set of standards in true bossa nova style but clearly bearing her unique stamp. This DVD captures Diana Krall at her scintillating best. Tracklising: 1) I Love Be...
The official lyric video for ROSÉ & Bruno Mars' APT. Listen to APT.: https://rosesarerosie.lnk.to/APTID Order the APT. limited CD single now: https://rosesarerosie.lnk.to/APT-CDID 🔔 Subscribe for the latest official music videos, live performances, lyric videos, official audio, and more: https://Atlantic.lnk.to/BMsubscribe 🎵 Listen to the Best of Bruno Mars playlist ➤ https://bit.ly/3bbslw8 🎵 Watch Bruno Mars’ Official Music Videos ➤ https://bit.ly/2U7I3mi 🎵 Dance At Home with Bruno Mars ➤ https://bit.ly/BrunoDanceAtHome Connect with Bruno: http://www.brunomars.com http://www.instagram.com/brunomars http://www.twitter.com/brunomars http://www.facebook.com/brunomars https://www.tiktok.com/@brunomars Connect with ROSÉ: http://www.rosesarerosie.com http://www.instagram.com/roses_ar...
"Someone Like You" by Van Morrison Listen to Van Morrison: https://VanMorrison.lnk.to/listenYD Subscribe to the official Van Morrison YouTube channel: https://VanMorrison.lnk.to/subscribeYD Watch more Van Morrison videos: https://VanMorrison.lnk.to/listenYC/youtube Follow Van Morrison: Facebook: https://VanMorrison.lnk.to/followFI Instagram: https://VanMorrison.lnk.to/followII Twitter: https://VanMorrison.lnk.to/followTI Website: https://VanMorrison.lnk.to/followWI Spotify: https://VanMorrison.lnk.to/followSI YouTube: https://VanMorrison.lnk.to/subscribeYD Lyrics: Someone like you Will make it all worthwhile Someone like you Keep me satisfied Someone exactly like you #VanMorrison #SomeoneLikeYou #OfficialAudio #PoeticChampionsCompose #Rock
Official video for “JUST LIKE YOU” by NF. CLOUDS (THE MIXTAPE) out now. Subscribe to NFrealmusic on YouTube: https://nf.lnk.to/youtubeID Play the CLOUDS (THE MIXTAPE) playlist here: https://nf.lnk.to/cloudsID/nf/youtube Official video playlist here: https://NF.lnk.to/youtubeplaylistID Stream ‘CLOUDS (THE MIXTAPE)’ Spotify: https://nf.lnk.to/cloudsID/spotify Apple Music: https://nf.lnk.to/cloudsID/applemusic Amazon Music: https://nf.lnk.to/cloudsID/amazonmusic Pandora: https://nf.lnk.to/cloudsID/pandora SoundCloud: https://nf.lnk.to/cloudsID/soundcloud Follow NF Instagram: https://instagram.com/nfrealmusic Facebook: http://facebook.com/nfrealmusic Twitter: http://twitter.com/nfrealmusic Spotify: https://nf.lnk.to/spotifyYD Website: http://www.nfrealmusic....
ROSÉ & Bruno Mars - APT. Download/stream: https://rosesarerosie.lnk.to/APTID Order APT. single CD: https://rosesarerosie.lnk.to/APT-CDID 'rosie' - the first studio album by ROSÉ - out now download/stream: http://rosesarerosie.lnk.to/rosieID ROSÉ store exclusive 'rosie' vinyl, cd's, and more available now: http://rosesarerosie.lnk.to/storeID Follow ROSÉ: https://www.instagram.com/roses_are_rosie https://www.tiktok.com/@roses_are_rosie https://x.com/numberonehq https://www.facebook.com/rosesarerosieofficial https://www.rosesarerosie.com/ Follow Bruno Mars: https://www.instagram.com/brunomars https://www.tiktok.com/@brunomars https://twitter.com/brunomars https://www.facebook.com/brunomars https://www.brunomars.com/ Lyrics: 아파트 아파트 아파트 아파트 아파트 아파트 Uh, uh huh uh huh 아파트 아파트 아파트 아...
“I Believe in Magic” from the album ‘The Great Impersonator’ out now - https://Halsey.lnk.to/TGI Text Me – https://Halsey.lnk.to/Text_Me Lyrics – My son is almost 3 He used to look just like his dad But right now he looks just like me And as far as I can see The fruit I bare is sweet But the apple’s rolling real far from the tree And falling down the hill so full of love and so carefree I wonder if the world will treat him any better than it treated me Well papa, don’t you preach I try to teach him every day that nothing good is free But oh it should be And with all my roots up above And all my branches down below Please tell my boy I love him so Please tell the world I have to grow before I go Well, I just wanted you to know That I believe in magic and I believ...
Three Days Grace’s official music video for 'Just Like You’ Listen: https://3DG.lnk.to/StreamYT Buy/Stream: https://3DG.lnk.to/ThreeDaysGraceExpandedYT More from Three Days Grace Animal I Have Become: https://youtu.be/xqds0B_meys I Hate Everything About You: https://youtu.be/d8ekz_CSBVg Never Too Late: https://youtu.be/lL2ZwXj1tXM Follow Three Days Grace Website: http://threedaysgrace.com/ Facebook: https://www.facebook.com/threedaysgrace Twitter: https://twitter.com/threedaysgrace Instagram: https://instagram.com/threedaysgraceofficial/ Tumblr: http://threedaysgraceofficial.tumblr.com/ More great 00s videos here: http://smarturl.it/Alternative00?IQid=TDGJLU --------- Lyrics: I could be mean I could be angry You know I could be just like you I could be fake I could be stupid You kn...
With Tyler, The Creator having just teased a new album today titled “Chromakopia”, and Kanye West teasing his album “Bully” yesterday, here are some of the most anticipated albums that should be dropping relatively soon! Which album(s) are you most excited for? #tylerthecreator #kanyewest #newmusic #theweeknd #kendricklamar
Songs Of A Lost World :: The new album Pre-order now: https://TheCure.lnk.to/SongsOfALostWorldYT Arriving November 1st Explore more music from The Cure: https://lnk.to/TheCureHits Follow The Cure: Spotify - https://TheCure.lnk.to/Spotify Facebook - https://TheCure.lnk.to/FB Twitter - https://TheCure.lnk.to/Twitter Music video by The Cure performing Just Like Heaven. (C) 1987 Fiction Records Ltd.
Anna Marie Wooldridge (August 6, 1930 – August 14, 2010), known by her stage name Abbey Lincoln, was an American jazz vocalist, songwriter, and actress, who wrote and performed her own compositions. She was a civil rights advocate during the 1960s.
Born in Chicago but raised in Calvin Center, Cass County, Michigan, Lincoln was one of many singers influenced by Billie Holiday. She often visited the Blue Note jazz club in New York City. Her debut album, Abbey Lincoln's Affair – A Story of a Girl in Love, was followed by a series of albums for Riverside Records. In 1960 she sang on Max Roach's landmark civil rights-themed recording, We Insist! Lincoln’s lyrics were often connected to the civil rights movement in America.
During the 1980s, Lincoln’s creative output was smaller and she released only a few albums during that decade. Her song "For All We Know" is featured in the 1989 film Drugstore Cowboy. During the 1990s and until her death, however, she fulfilled a 10-album contract with Verve Records. After a tour of Africa in the mid-1970s, she adopted the name Aminata Moseka.
I think about the life I live
A figure made of clay
And think about the things I lost
The things I gave away
And when I'm in a certain mood
I search the house and look
One night I found these magic words
In a magic book
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
There's a hand to rock the cradle
And a hand to help us stand
With a gentle kind of motion
As it moves across the land
And the hand's unclenched and open
Gifts of life and love it brings
So keep your hand wide open
If you're needing anything
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
Throw it away
Throw it away
Give your love, live your life
Each and every day
And keep your hand wide open
Let the sun shine through
'Cause you can never lose a thing
If it belongs to you
'Cause you can never lose a thing
If it belongs to you
You can never ever lose a thing
If it belongs to you
You can never ever lose a thing
If it belongs to you
You can never ever lose a thing