- published: 13 Dec 2009
- views: 17603475
'+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; })); }); -->
Canzetta Maria "Candi" Staton (/ˈsteɪtən/) (born March 13, 1940 in Hanceville, Alabama) is an American soul and gospel singer, best known in the United States for her 1970 remake of Tammy Wynette's "Stand By Your Man" and her 1976 disco chart-topper "Young Hearts Run Free". In Europe, her biggest selling record is the anthemic "You Got the Love" from 1986 released in collaboration with the Source. Staton was inducted into the Christian Music Hall of Fame.
At the age of eleven or twelve, Staton and her sister Maggie were sent to the Jewell Christian Academy in Nashville, Tennessee. Her vocal abilities quickly set her apart from the crowd; the school's pastor teamed the two sisters with a third girl (Naomi Harrison) to form the Jewell Gospel Trio. As teenagers, they toured the traditional gospel circuit in the 1950s with the Soul Stirrers, C. L. Franklin and Mahalia Jackson. They recorded several sides for Nashbro, Apollo and Savoy Records between 1953 and 1963.
"We Can Work It Out" is a song by the Beatles, written by Paul McCartney and John Lennon. It was released as a "double A-sided" single with "Day Tripper", the first time both sides of a single were so designated in an initial release. Both songs were recorded during the Rubber Soul sessions.
The song is an example of Lennon–McCartney collaboration at a depth that happened only rarely after they wrote the hit singles of 1963. This song, "A Day in the Life", "Baby, You're a Rich Man", and "I've Got a Feeling", are among the notable exceptions.
McCartney wrote the words and music to the verses and the chorus, with lyrics that "might have been personal", probably a reference to his relationship with Jane Asher. McCartney then took the song to Lennon:
With its intimations of mortality, Lennon's contribution to the twelve-bar bridge contrasts typically with what Lennon saw as McCartney's cajoling optimism, a contrast also seen in other collaborations by the pair, such as "Getting Better" and "I've Got a Feeling". As Lennon told Playboy in 1980:
We Can Work It Out, is a Swedish English language hit sung by the Swedish singer Andreas Johnson and was recorded in 2010. Lyrics are by Andreas Johnson himself and music was written by Bobby Ljunggren and Marcos Ubeda.
Andreas Johnson participated in the Swedish Melodifestivalen 2010 with "We Can Work It Out" and finished second in the second semi-final in Göransson Arena, Sandviken on 13 February 2010. The song was qualified to the final in Stockholm.
"We Can Work It Out" is the first hit single from pop music project Sweetbox on the album The Next Generation. It is the first song from the project to feature Jamie Pineda as frontwoman and Derek Bramble as producer. Georgie Dennis, Tom Barnes, Gavin Jones, Ben Kohn and Peter Kelleher co-wrote the song with Jamie.
"We Can Work It Out" samples The Four Seasons by Antonio Vivaldi, continuing the projects theme of fusing pop beats and classical music.
The song had somewhat high success in Japan. It reached #4 on iTunes Pop Charts in Japan and even reached the country's Billboard Hot 100 at #27.
In Korea, the song was even more successful hitting #1 on 6 major charts including Bugs and Mnet, while also reaching top 10 positions on other charts like Cyworld, Soribada and Melon. After the creation of the GAON charts, which would become Korea's official chart, the song debuted at #115 and only peaked at that number on the Overall Digital Comprehensive Chart. On the International Digital Comprehensive Chart, the song debuted and peaked at #26.
Candi Staton - Young Hearts Run Free 1976.
Provided to YouTube by Rhino/Warner Records Young Hearts Run Free · Candi Staton Young Hearts Run Free ℗ 1976 Warner Records Inc. Vocals: Candi Staton Composer: David Bernard Crawford Writer: David Crawford Auto-generated by YouTube.
https://mistagroove.com Please support my daughter, Simisola, by subscribing to her YouTube channel: https://youtube.com/watch?v=HD6bk1hOvDQ Thank you. God Bless https://mistagroove.com - For Those Who Love OldSkool Vibes mistaGROOVE's OldSpice Jams is a radio show that specializes in the funky classics of the 70s & 80s. A musical journey into the realms of Soul, JazzFunk, Disco and a touch of Afrovibes.
Candi Staton performs You Got The Love at Glastonbury 2023. Watch more highlights on BBC iPlayer: https://www.bbc.co.uk/iplayer/episodes/b007r6vx/glastonbury Listen to sets and highlights on BBC Sounds: https://www.bbc.co.uk/sounds/curation/m001n97q Follow all on social @BBCGlastonbury.
Candi Staton - You Got the Love 1986
Released: 27/08/12 http://www.beatport.com/release/hallelujah-anyway/958327 Candi Staton has legacy beyond compare. Responsible for some of the most memorable and best loved soul records of all time, Staton has a voice that is currently captivating a new generation of music lovers just as it did when she first oooed and ahhed onto the music scene as a soul siren in the '70s. http://defected.com http://twitter.com/defectedrecords http://facebook.com/defectedinthehouse http://soundcloud.com/defectedrecords http://mixcloud.com/defectedrecords http://defectedrecords.tumblr.com http://instagram.com/defectedrecords http://open.spotify.com/user/defected.records
Support The Channel - https://www.buymeacoffee.com/YoungPilgrim
Distributed by WMG. The official music video for Candi Staton's 1977 remake of The Bee Gee's "Nights on Broadway." The music video was shot in Times Square in New York city . Candi's version peaked at No. 16 on Billboard's R&B Singles chart and No. 102 on the US Pop Singles chart. The song did even better abroad where it reached No. 6 on the UK Pop Singles chart and No. 4 on the Irish Pop Singles chart. The track was produced by Bob Monaco who was known for his work with Rufus & Chaka Khan on songs like "Once You Get Started" and "Tell Me Something Good."
Candi Staton-Here I Am Again
Classic song from 1976 by Candi Stanton ....note:I Do Not own the copyright to this Disclaimer:copyright infringement unintentional
The Beatles performing “We Can Work It Out.” "In "We Can Work It Out, Paul did the first half, I did the middle eight. But you've got Paul writing, 'We can work it out, we can work it out' - real optimistic, y'know, and me impatient, 'Life is very short and there's no time for fussing and fighting my friend'." (John Lennon) 'We Can Work It Out' became The Beatles' sixth single in a row to top the US charts. At the time, no other band had achieved such success. The track took over 11 hours to perfect - up to this point, that was the longest period The Beatles had spent in the studio on a single song. At Twickenham Film Studios, a little over three weeks after the single was recorded, The Beatles made three separate promo films for 'We Can Work It Out'. Like all the other films shot that...
Provided to YouTube by Universal Music Group We Can Work It Out (Remastered 2015) · The Beatles 1 ℗ 2015 Calderstone Productions Limited (a division of Universal Music Group) Released on: 2000-11-13 Producer, Studio Personnel, Mixer: Giles Martin Studio Personnel, Mixer: Sam Okell Studio Personnel, Mastering Engineer: Miles Showell Associated Performer, Sound Design: Al Sirkett Studio Personnel, Assistant Mixer: Matt Mysko Studio Personnel, Recording Engineer: Simon Gibson Studio Personnel, Recording Engineer: James Clarke Studio Personnel, Recording Engineer: Andrew Walter Producer: George Martin Composer Lyricist: John Lennon Composer Lyricist: Paul McCartney Translator: Kazuko Katagiri Auto-generated by YouTube.
Wendy Moten performs the classic song "We Can Work It Out" during The Voice Blind Auditions. » Get The Voice Official App: http://bit.ly/TheVoiceOfficialApp » Subscribe for More: http://bit.ly/TheVoiceSub » NBC’s The Voice Mondays and Tuesdays » Stream Now: https://pck.tv/3wgH6sH THE VOICE ON SOCIAL: Like The Voice: http://Facebook.com/NBCTheVoice Follow The Voice: https://Twitter.com/NBCTheVoice Follow The Voice on Instagram: https://instagram.com/nbcthevoice/ NBC’s The Voice follows the strongest vocalists from across the country and invites them to compete in this season's blockbuster vocal competition. #TheVoice2021 #TheVoice #NBC #ArianaGrande #BlakeShelton #JohnLegend #KellyClarkson Find The Voice trailers, full episode highlights, previews, promos, clips, and digital exclusives...
WE CAN WORK IT OUT was written in 2008. Producer Derek Bramble and SWEETBOX artist Jamie Pineda have recorded this song in Derek's studio in Woodland Hills/Los Angeles in 2009. The song was the first single from the album "The next generation", released in 2009 and has reached various top 10 positions. Additional information at http://en.wikipedia.org/wiki/We_Can_Work_It_Out_(Sweetbox_song) http://sweetbox.com http://youtube.com/Sweetbox http://twitter.com/Sweetbox http://facebook.com/SweetboxMusic [ALBUM INFO] album: THE NEXT GENERATION release: 2009 - Europe, US, Japan, Korea [SONG TITLES - europe version] 01. We Can Work It Out 02. You Don't Know What You're Sorry For 03. In a Heartbeat 04. With a Love Like You 05. Everything is Nothing 06. Crash Landed 07. Everything'...
Listen to Friends of Clay : https://friendsofclay.com/ #friendsofclay Follow Friends of Clay: Instagram: https://www.instagram.com/friendsofcl... Twitter: https://twitter.com/friendsofclay Website: https://friendsofclay.com/ Facebook: https://www.facebook.com/FriendsOfClay/ -- "We Can Work It Out" Written by: Clay Priskorn Produced by: Clay Priskorn Mixed by: Clay Priskorn Mastered by: Becker Mastering -- Lyrics: I’ve been closing my heart to the ways of the world, pushing me down I’ve been closing my eyes to the thought of your voice inside my head If you fall I’ll pull you back, baby it’s okay to feel this way I’ve been losing my time to my selfish ways, it won’t stop bringing me down Baby it’s okay we can work it out we will never know how it is to live alone ...
Tesla official video for “We Can Work It Out,” performed live acoustically at Abbey Road Studios. Tesla visited famed iconic recording studio Abbey Road Studios for a one-night musical event capturing the band performing songs from their legendary arsenal including “Love Song” and “What You Give” along with their classic covers of “Signs” and “We Can Work It Out.” Additionally, the band performed live for the first-time-ever their new song “California Love Song” from their latest album Shock including “Tied To The Tracks” and “Forever Loving You.” The performance was recorded and filmed in 4K high-definition, bringing forth the band’s newest live album Five Man London Jam as an homage to their critically acclaimed live acoustic album Five Man Acoustical Jam. Five Man London Jam will be...
PAUL McCARTNEY We Can Work It Out Unplugged Deluxe Yellow Cow
I've done a lot of things in my life, but never this," Paul McCartney said on PBS tonight. "This" was traveling to the White House, which he did last month to accept the Library of Congress Gershwin Prize for Popular Song. A properly all-star concert was convened to befit the occasion, and while bits and pieces of the event have leaked out on YouTube since then, tonight the whole thing (or most of it) aired as part of PBS' "In Performance at the White House" series. The show opened with some stirring words from President Obama. "It's hard to believe that it's been nearly half a century since four lads from Liverpool landed on our shores and changed everything overnight," he reflected. Then it was time for a cavalcade of stars old and young to pay homage to the voluminous back catalog th...
Recorded October 20th, 1965 at EMI Studios London
Tesla playing an acoustic version of "We Can Work It Out“, recorded in Philadelphia on the 02.07.1990. Remember to subscribe to stay up to date with all new releases on the channel. ⚡SHOCK ⚡New Album Out Now! ► https://TESLA.lnk.to/SHOCK Connect w/ TESLA: http://www.TeslaTheBand.com Facebook: https://www.facebook.com/TeslaBand/ Instagram: https://www.instagram.com/TeslaBand Twitter: https://twitter.com/TeslaBand Youtube: https://www.youtube.com/TeslaBand Vevo: http://www.vevo.com/artist/Tesla Spotify: https://open.spotify.com/artist/0dgnITyIAN4NrmUVisvxHU iTunes: https://itunes.apple.com/us/artist/tesla/id113592 Amazon: https://www.amazon.com/Tesla/e/B000APYSIK
Canzetta Maria "Candi" Staton (/ˈsteɪtən/) (born March 13, 1940 in Hanceville, Alabama) is an American soul and gospel singer, best known in the United States for her 1970 remake of Tammy Wynette's "Stand By Your Man" and her 1976 disco chart-topper "Young Hearts Run Free". In Europe, her biggest selling record is the anthemic "You Got the Love" from 1986 released in collaboration with the Source. Staton was inducted into the Christian Music Hall of Fame.
At the age of eleven or twelve, Staton and her sister Maggie were sent to the Jewell Christian Academy in Nashville, Tennessee. Her vocal abilities quickly set her apart from the crowd; the school's pastor teamed the two sisters with a third girl (Naomi Harrison) to form the Jewell Gospel Trio. As teenagers, they toured the traditional gospel circuit in the 1950s with the Soul Stirrers, C. L. Franklin and Mahalia Jackson. They recorded several sides for Nashbro, Apollo and Savoy Records between 1953 and 1963.
We're caught in a trap
I can't walk out
Because I love you too much baby
Why can't you see
What you're doing to me
When you don't believe a word I say?
We can't go on together
With suspicious minds
And we can't build our dreams
On suspicious minds
So, if an old friend I know
Drops by to say hello
Would I still see suspicion in your eyes?
Here we go again
Asking where I've been
You can't see these tears are real
I'm crying
We can't go on together
With suspicious minds
And be can't build our dreams
On suspicious minds
Oh let our love survive
Or dry the tears from your eyes
Let's don't let a good thing die
When honey, you know
I've never lied to you
Mmm yeah, yeah