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

Kim Weston

Kim Weston (born December 20, 1939) is an American soul singer, and Motown alumna. In the 1960s, Weston scored hits with the songs "Love Me All the Way" and "Take Me in Your Arms (Rock Me a Little While)", and with her duet with Marvin Gaye, "It Takes Two".

Career

Born Agatha Nathalia Weston in Detroit, Michigan, she was signed to Motown in 1961, scoring a minor hit with "Love Me All the Way" (R&B #24, Pop #88). Weston's biggest solo hits with Motown were "Take Me in Your Arms (Rock Me a Little While)" (R&B #4, Pop #50, 1965, later covered by the Isley Brothers, Blood, Sweat & Tears, Jermaine Jackson and the Doobie Brothers, and "Helpless" (R&B #13, Pop #56,entered Cashbox March 26th,1966, previously recorded by the Four Tops on their Second Album LP). Her biggest claim to fame was singing the classic hit "It Takes Two" with Marvin Gaye in 1966 and her later recording of the Black National Anthem, "Lift Every Voice and Sing". It was the success of "It Takes Two" that caused Motown to partner Gaye with Tammi Terrell, spawning even more success for the label.

Kim Weston (photographer)

Kim Weston (born 1953) is an American photographer known for his fine art nude studies.

Kim Weston is the grandson of photographer Edward Weston, son of photographer Cole Weston and nephew of photographer Brett Weston. He worked for a number of years helping his father make new prints of Edward Weston's negatives and as an assistant to his uncle Brett. Weston does much of his own photography in the Wild Cat Canyon house that once belonged to his grandfather in Carmel, California. Weston is also a prolific teacher at photography workshops.

References

  • Marshall, Peter. "More Nudes". About.com. Retrieved 2007-01-02.
  • Bibliography

  • Buchsteiner, Thomas. Edward Cole Kim Weston: Three Generations of American Photography. Schaffhausen: Stemmle, 1995. ISBN 3-905514-40-0.
  • Kim Weston, Ballet 2007 Calendar, 2006
  • Kim Weston by Kim Weston. Laguna Beach: FACT, 1997
  • External links

  • Kim Weston

  • 'Til There Was You

    'Til There Was You is a 1997 American romantic drama film directed by Scott Winant. The screenplay, written by Winnie Holzman, traces thirty-odd years in the parallel lives of two people whose intertwined paths finally converge when their mutual interest in a community project brings them together. The film starred Jeanne Tripplehorn, Dylan McDermott, Sarah Jessica Parker and Jennifer Aniston.

    Plot

    Gwen Moss (Jeanne Tripplehorn) has spent the better part of her life waiting for the man of her dreams, unaware she briefly bumped into him at school as children and has had several close encounters ever since. She aspires to have a life like her longtime friend Debbie (Jennifer Aniston), a successful doctor with a beautiful home but a marriage that may not be as perfect as it seems on the surface.

    Till There Was You

    "Till There Was You" is a song written by Meredith Willson for his 1957 musical play The Music Man, and which also appeared in the 1962 movie version. The song is sung by librarian Marian Paroo (Barbara Cook on Broadway, Shirley Jones in the film) to Professor Harold Hill (portrayed by Robert Preston) toward the end of Act Two. It became a hit for Anita Bryant in 1959 and was later covered by The Beatles in 1963.

    History

    The first recording of this song to be released came even before the original cast album version of January 1958. Promotional copies of the 45 rpm single, Capitol P3847, were released on November 26, 1957, even before the Broadway production had premiered on December 19. Produced by Nelson Riddle, it featured his orchestra and 17-year-old vocalist Sue Raney. An earlier version of this song, "Till I Met You", was first recorded by Eileen Wilson in 1950 and later appeared on the January 14, 1951 edition of The Big Show, performed by Fran Warren.

    The Beatles version

    Podcasts:

    Kim Weston

    • Kim Weston Motown "Take Me In Your Arms (Rock Me A Little while)" My Extended Version!

      No copyright infringement intended. If felt, comment below and I will remove this video. The great Kim Weston with the one of the most classic of Holland Dozier Holland's Motown tracks...stretched....and NEW! And please....forgive the presence of those silly Hullabaloo Dancers and that HORRIBLE choreography. Happy Birthday, KIM!

      published: 31 Dec 2011
    • Kim Weston - Take me in your arms

      Kim Weston - Take me in your arms, 1965

      published: 25 Nov 2010
    • Kim Weston - Love me all the way

      published: 22 Nov 2013
    • Kim Weston Motown A-Go-Go Hits Medley Bert's Warehouse October 25, 2019

      published: 30 Oct 2019
    • KIM WESTON - HELPLESS

      KIM WESTON 1965

      published: 28 Jun 2012
    • Kim Weston - I'm Still Loving You

      Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.

      published: 03 Mar 2018
    • Kim Weston - Take Me In Your Arms (Rock Me a Little While)

      The original! From 1965, a soul-stompin' classic, a product of collaboration made in heaven: the great Kim Weston, the equally-as-great Andantes, and the absolutely legendary Holland-Dozier-Holland. If you haven't heard this yet, you haven't heard Motown!

      published: 09 Sep 2013
    • Kim Weston For The First Time 1967 (FULL ALBUM) [RvesvesB, Soul]

      Tracklist: 1 - Where Am I going (2:57) 2 - Free Again (4:50) 3 - Everything In The World I love (3:06) 4 - When The Sun Comes Out (2:48) 5 - Walking Happy (2:53) 6 - The Beat Goes On (3:12). From The Album Kim Kim Kim - 1971 - Volt

      published: 19 Feb 2018
    developed with YouTube
    Kim Weston  Motown "Take Me In Your Arms (Rock Me A Little while)" My Extended Version!
    3:30

    Kim Weston Motown "Take Me In Your Arms (Rock Me A Little while)" My Extended Version!

    • Order:
    • Duration: 3:30
    • Uploaded Date: 31 Dec 2011
    • views: 386812
    No copyright infringement intended. If felt, comment below and I will remove this video. The great Kim Weston with the one of the most classic of Holland Dozier Holland's Motown tracks...stretched....and NEW! And please....forgive the presence of those silly Hullabaloo Dancers and that HORRIBLE choreography. Happy Birthday, KIM!
    https://wn.com/Kim_Weston_Motown_Take_Me_In_Your_Arms_(Rock_Me_A_Little_While)_My_Extended_Version
    Kim Weston - Take me in your arms
    3:06

    Kim Weston - Take me in your arms

    • Order:
    • Duration: 3:06
    • Uploaded Date: 25 Nov 2010
    • views: 286416
    Kim Weston - Take me in your arms, 1965
    https://wn.com/Kim_Weston_Take_Me_In_Your_Arms
    Kim Weston - Love me all the way
    2:57

    Kim Weston - Love me all the way

    • Order:
    • Duration: 2:57
    • Uploaded Date: 22 Nov 2013
    • views: 42540
    https://wn.com/Kim_Weston_Love_Me_All_The_Way
    Kim Weston Motown A-Go-Go Hits Medley Bert's Warehouse October 25, 2019
    15:50

    Kim Weston Motown A-Go-Go Hits Medley Bert's Warehouse October 25, 2019

    • Order:
    • Duration: 15:50
    • Uploaded Date: 30 Oct 2019
    • views: 4240
    https://wn.com/Kim_Weston_Motown_A_Go_Go_Hits_Medley_Bert's_Warehouse_October_25,_2019
    KIM WESTON - HELPLESS
    2:37

    KIM WESTON - HELPLESS

    • Order:
    • Duration: 2:37
    • Uploaded Date: 28 Jun 2012
    • views: 59222
    KIM WESTON 1965
    https://wn.com/Kim_Weston_Helpless
    Kim Weston - I'm Still Loving You
    2:50

    Kim Weston - I'm Still Loving You

    • Order:
    • Duration: 2:50
    • Uploaded Date: 03 Mar 2018
    • views: 13093
    Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
    https://wn.com/Kim_Weston_I'm_Still_Loving_You
    Kim Weston - Take Me In Your Arms (Rock Me a Little While)
    2:58

    Kim Weston - Take Me In Your Arms (Rock Me a Little While)

    • Order:
    • Duration: 2:58
    • Uploaded Date: 09 Sep 2013
    • views: 134946
    The original! From 1965, a soul-stompin' classic, a product of collaboration made in heaven: the great Kim Weston, the equally-as-great Andantes, and the absolutely legendary Holland-Dozier-Holland. If you haven't heard this yet, you haven't heard Motown!
    https://wn.com/Kim_Weston_Take_Me_In_Your_Arms_(Rock_Me_A_Little_While)
    Kim Weston For The First Time 1967 (FULL ALBUM) [RvesvesB, Soul]
    43:05

    Kim Weston For The First Time 1967 (FULL ALBUM) [RvesvesB, Soul]

    • Order:
    • Duration: 43:05
    • Uploaded Date: 19 Feb 2018
    • views: 2374
    Tracklist: 1 - Where Am I going (2:57) 2 - Free Again (4:50) 3 - Everything In The World I love (3:06) 4 - When The Sun Comes Out (2:48) 5 - Walking Happy (2:53) 6 - The Beat Goes On (3:12). From The Album Kim Kim Kim - 1971 - Volt
    https://wn.com/Kim_Weston_For_The_First_Time_1967_(Full_Album)_Rvesvesb,_Soul
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Kim Weston Motown "Take Me In Your Arms (Rock Me A Little while)" My Extended Version!

    No copyright infringement intended. If felt, comment below and I will remove this video. The great Kim Weston with the one of the most classic of Holland Dozier Holland's Motown tracks...stretched....and NEW! And please....forgive the presence of those silly Hullabaloo Dancers and that HORRIBLE choreography. Happy Birthday, KIM!
    3:30
    Kim Weston Motown "Take Me In Your Arms (Rock Me A Little while)" My Extended Version!
    No copyright infringement intended. If felt, comment below and I will remove this video. ...
    published: 31 Dec 2011
    Play in Full Screen
    3:06
    Kim Weston - Take me in your arms
    Kim Weston - Take me in your arms, 1965
    published: 25 Nov 2010
    Play in Full Screen
    2:57
    Kim Weston - Love me all the way
    published: 22 Nov 2013
    Play in Full Screen
    15:50
    Kim Weston Motown A-Go-Go Hits Medley Bert's Warehouse October 25, 2019
    published: 30 Oct 2019
    Play in Full Screen
    2:37
    KIM WESTON - HELPLESS
    KIM WESTON 1965
    published: 28 Jun 2012
    Play in Full Screen
    2:50
    Kim Weston - I'm Still Loving You
    Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for “f...
    published: 03 Mar 2018
    Play in Full Screen
    2:58
    Kim Weston - Take Me In Your Arms (Rock Me a Little While)
    The original! From 1965, a soul-stompin' classic, a product of collaboration made in heave...
    published: 09 Sep 2013
    Play in Full Screen
    43:05
    Kim Weston For The First Time 1967 (FULL ALBUM) [RvesvesB, Soul]
    Tracklist: 1 - Where Am I going (2:57) 2 - Free Again (4:50) 3 - Everything In The World I...
    published: 19 Feb 2018
    Play in Full Screen

    Kim Weston

    Kim Weston (born December 20, 1939) is an American soul singer, and Motown alumna. In the 1960s, Weston scored hits with the songs "Love Me All the Way" and "Take Me in Your Arms (Rock Me a Little While)", and with her duet with Marvin Gaye, "It Takes Two".

    Career

    Born Agatha Nathalia Weston in Detroit, Michigan, she was signed to Motown in 1961, scoring a minor hit with "Love Me All the Way" (R&B #24, Pop #88). Weston's biggest solo hits with Motown were "Take Me in Your Arms (Rock Me a Little While)" (R&B #4, Pop #50, 1965, later covered by the Isley Brothers, Blood, Sweat & Tears, Jermaine Jackson and the Doobie Brothers, and "Helpless" (R&B #13, Pop #56,entered Cashbox March 26th,1966, previously recorded by the Four Tops on their Second Album LP). Her biggest claim to fame was singing the classic hit "It Takes Two" with Marvin Gaye in 1966 and her later recording of the Black National Anthem, "Lift Every Voice and Sing". It was the success of "It Takes Two" that caused Motown to partner Gaye with Tammi Terrell, spawning even more success for the label.

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