- published: 27 Oct 2009
- views: 2783515
'+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; })); }); -->
Karyn Layvonne White (born October 14, 1965) is an American singer who was popular during the late 1980s and early 1990s. She is best known for her R&B singles; "Superwoman" (1989), "Secret Rendezvous" (1989), "The Way You Love Me" (1988), and the Billboard Hot 100 number one single "Romantic" (1991).
White was born in Los Angeles to Vivian and Clarence White. She is the youngest of five children. She sang in a church choir and worked as a backing singer, then sang on Jeff Lorber's 1986 "Private Passion" single "Facts of Love", "True Confessions" and "Back in Love" before signing to Warner Bros. Records.
White married Terry Lewis in 1992 and together they had a daughter, Ashley Nicole and adopted son Brandon. Lewis brought to the marriage children Trey and Chloe. They eventually divorced in 1999, and she later married producer/musician Bobby G.
White's self-titled debut album Karyn White was released in 1988. It was produced by L.A. Reid and Babyface and achieved platinum status. Karyn White contained the hit singles "The Way You Love Me", "Secret Rendezvous" (#6 in the U.S., her biggest hit at the time), "Superwoman" and "Love Saw It" a duet with Babyface. White was nominated in the Best R&B/Urban Contemporary New Artist category for the 1989 Soul Train Music Awards. She was also nominated for two Grammy Awards. She became the first female artist to have their first three solo releases hit #1 on the R&B charts.
Karyn White is the self-titled debut album from R&B singer Karyn White. Released in 1988, it went to #1 on the Top R&B Albums chart for seven weeks the following year. The album was certified Platinum by the RIAA on April 4, 1989. It gave her four hits, "The Way You Love Me", "Superwoman", "Love Saw It" and "Secret Rendezvous". The former three were #1 singles on the R&B chart. A re-issue in late 1989 of "Secret Rendezvous" in the UK reached #22, as opposed to the original top 50 placing. "Superwoman" became her biggest hit there, reaching #11 in the UK Singles Chart.
White co-wrote two songs on the album.
All songs written and composed by Babyface, L.A. Reid, Daryl Simmons except where noted.
"Sista Sista" was the third single release from British soul singer Beverley Knight's Prodigal Sista album. Knight has previously described the song as the highlight of her career as a lyricist, and is dedicated to two of her friends - "Melissa and Karen", according to the album sleeve. The song was released in November 1998 but it failed to chart in Britain.
The music video for the original release of "Sista Sista" sees Knight performing alone, with a microphone in front of a red curtain. Directed by 'The New Renaissance' - a previous moniker for directing duo Harvey & Carolyn.
"Sista Sista" was re-released as a single in 1999 and was the sixth and final single from Prodigal Sista. Together with a new video, the song charted at #31 in the UK. The release was designed to capitalise on Knight's success at the 1999 MOBO Awards, where she won two awards for Best R&B Act and Best Album for Prodigal Sista.
Secret Rendezvous by Karyn White from the album Karyn White © 1988 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: From a penthouse view We'll make love Drink champagne by candlelight I'm so glad I'm in your arms Baby, I am yours tonight To be with you is all I need So lock the door and throw away the key No one will disturb this groove We could not stop it if we wanted to It won't stop It don't stop Our non-stop secret rendezvous It won't stop It don't stop Our non-stop secret rendezvous Hey, hey, hey Hey, hey, hey Oh, oh, oh Secret rendezvous Happiness is when I, I think of you And when we get together and rendezvous I'll be on time, you bring the wine And when we lock the door, you'll be all mine I want you Do you want me? I wanna lock the door Throw...
Karyn White Superwoman
I'd rather be alone
The Way You Love Me by Karyn White from the album Karyn White © 1988 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Hey, baby You're driving me crazy With that special loving feeling that you give to me And I'm so proud, you want me to be your lady Now I know how it feels to live a fantasy I used to dream about love And sure that's how it was But I don't have to dream no more 'Cause I, I got more than I can stand I found me a lover in another man I got you, baby, that's all I was waiting for And I love the way you love me I place no one above the one true love And I love the way you love me And baby no matter what I love the, I love the way you love (Oh oh...oh oh...oh oh) Oh, baby, baby, baby I might as well face it I've fallen in too deep You have cont...
Superwoman was released in 1988 on Karyn's self titled album, 'Karyn White'. For more visit Karynwhite.me or follow her on social media. IG: @Karynwhiteofficial Twitter: @Karyns_world FB: Karyn White
With a crazy work ethic, drive, determination, a distinctive voice, beauty, and amazing dance moves, Karyn White had everything she needed to become a star. But after releasing her first three albums, the California native went on an 18-year hiatus. Here’s what happened. #KarynWhite #TerryLewis #Babyface http://www.rrgsnacks.com UPDATE: Karyn White’s team replied to our DM. They confirmed she was never in a relationship with Al B. Sure but did not confirm the information about her and Terry allegedly adopting a son. They also provided us with this information: Check out her independent feature film Gale & The Storm loosely based on her life in which she executive produced, co-wrote, starred in, recorded the soundtrack all during the 7-day production: https://youtu.be/XHccoFPUpng Karyn...
The Way You Love Me (Video) by Karyn White (c) 1988 Warner Bros Records for the U.S. and WEA International Inc. for the world outside of the U.S.
This is the full song
I'm Your Woman was released in 1994 on Karyn White's album, "Make Him Do Right'. For more visit Karynwhite.me or follow her on social media. IG: @Karynwhiteofficial Twitter: @Karyns_world FB: Karyn White
Karyn White - Can I Stay With You
Travel back to the nineties and watch the first ever scene of classic American sitcom, Sister, Sister. Identical twins Tia and Tamera Mowry meet for the very first time and it’s both adorable and hilarious. Who remembers when they entered the talent show covering The Supremes? ➡️SUBSCRIBE FOR MORE: http://bit.ly/29kBByr About Netflix: Netflix is the world's leading streaming entertainment service with over 195 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without adverts or commitments. Find Netflix UK on: ➡️TWITTER: http://bit.ly/29lYvcs ➡️INSTAGRA...
🍭50% Off Sister, Sister: The Complete Series! Use Code: 50OFF 👉🏾 https://www.soulynostalgia.com/product-page/sister-sister-complete-series
From: “Father’s Day”
Beverley Knight - Sista Sista (Music Video) Follow Beverley Knight: Instagram - https://www.instagram.com/beverleyknight TikTok: https://www.tiktok.com/@beverleyknight Facebook - https://www.facebook.com/beverleyknightofficial Twitter - https://twitter.com/beverleyknight Listen to Beverley Knight's new album 'The Fifth Chapter' out now: https://tag8.lnk.to/beverleyknight Lyrics: Oooh, oh sista, sista sista Sitting alone with her head full of empty thoughts Playing with time that she just doesn't have Dreaming that life is a stranger that brings you flowers Praying the dream is as real as she feels it is Dreams give you anything Knowing that chance could bring you to the other side Wanting her future there, feeling that love affaire With the other side Sista sista, better run, better ...
The craziest, funniest, and most heartfelt scenes on Sister Sister! Of course, Tia and Tamera Mowry shine in all six seasons of the sitcom Sister Sister, now available on Netflix. Watch Sister, Sister, only on Netflix: https://www.netflix.com/title/70105030 SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with over 195 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. The Best Scenes In Sister Sister | Netflix https://youtube.com/Netflix
Tia and Tamera are twins who were separated at birth, with each being adopted by a different parent. One day, the teens have a chance encounter while shopping at a clothing store in the mall. After the families meet, Tamera's adoptive father reluctantly allows Tia and her mother to move into his home so the girls can be together. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. #PrimeVideo #SisterSister #Shorts
Sister, Sister: Operation: Deja View starring Jackée Harry, Tia Mowry and Tamera Mowry Twitter: http://twitter.com/JackeeHarry Facebook: http://facebook.com/JackeeHarry Instagram: http://instagram.com/JackeeHarry
Oh, Roger. Watch this video for the ultimate nineties nostalgia and enjoy a mashup of every single time Roger from Sister, Sister oversteps his boundaries and is sent away with the immortal words: "Go home Roger!". All six series are now available on Netflix. ➡️SUBSCRIBE FOR MORE: http://bit.ly/29kBByr About Netflix: Netflix is the world's leading streaming entertainment service with over 195 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without adverts or commitments. Find Netflix UK on: ➡️TWITTER: http://bit.ly/29lYvcs ➡️INSTAGRAM: http://bit.ly/2...
Sistah Sistah- Hawaiian Reggae
OMG -- all of our favorites from the hit '90s show "Sister, Sister" are in the house this Thursday! Watch as Tamera and Tia get a big surprise from their former castmate. Tune in tomorrow for MORE!
Karyn Layvonne White (born October 14, 1965) is an American singer who was popular during the late 1980s and early 1990s. She is best known for her R&B singles; "Superwoman" (1989), "Secret Rendezvous" (1989), "The Way You Love Me" (1988), and the Billboard Hot 100 number one single "Romantic" (1991).
White was born in Los Angeles to Vivian and Clarence White. She is the youngest of five children. She sang in a church choir and worked as a backing singer, then sang on Jeff Lorber's 1986 "Private Passion" single "Facts of Love", "True Confessions" and "Back in Love" before signing to Warner Bros. Records.
White married Terry Lewis in 1992 and together they had a daughter, Ashley Nicole and adopted son Brandon. Lewis brought to the marriage children Trey and Chloe. They eventually divorced in 1999, and she later married producer/musician Bobby G.
White's self-titled debut album Karyn White was released in 1988. It was produced by L.A. Reid and Babyface and achieved platinum status. Karyn White contained the hit singles "The Way You Love Me", "Secret Rendezvous" (#6 in the U.S., her biggest hit at the time), "Superwoman" and "Love Saw It" a duet with Babyface. White was nominated in the Best R&B/Urban Contemporary New Artist category for the 1989 Soul Train Music Awards. She was also nominated for two Grammy Awards. She became the first female artist to have their first three solo releases hit #1 on the R&B charts.
Hey baby, you're drivin' me crazy,
with that special lovin' feelin' that you give to me...
And I'm so proud, you want me to be your lady,
now I know how it feels to live a fantasy...
I used to dream about love, and sure it's how it was,
but I don't have to dream no more!
'Cause I, I got more than I can stand, I found me a lover in another man,
I got you baby that's all I was waiting for...
And I love the way you love me, I place no one above, I don't want true love...
And I love the way you love me, and baby no matter what,
I love the, I love the way you love...
(oh-Oh! oh-Oh! oh-Oh! Oh-oh!, oh-Oh! oh-Oh!)
Oh baby, ba, baby, I might as well face it,
I've fallen in so deep, you have control of me...
Without a doubt, it has to be the greatest,
you are every bit the man I had hoped you'd be...
I used to dream about love, and sure it's how it was,
but I don't have to dream no more, oh no!
'Cause when I think about your lovin' then I got a good beat,
I get excited from the feeling that is given to me,
so won't you keep me comin' baby 'cause I love the joy you bring, oh I love...
And I love the way you love me, I place no one above, I don't want true love...
And I love the way you love me, and baby no matter what,
I love the, I love the way you love...
(oh-Oh! oh-Oh! oh-Oh! Oh-oh! oh-Oh! oh-Oh!)
I love the way you love...
(oh-Oh! oh-Oh! oh-Oh! Oh-oh! oh-Oh! oh-Oh!)I love the way...
One, for all the special love,
two, a sensitive and tender touch,
three, because you please, you bring out the best in me,
'cause when I think about your lovin' then I got a good beat,
I get excited from the feelin' that is given to me,
so won't you keep me comin' baby 'cause I love the joy you bring, oh I love...
(oh Oh! oh Oh! oh Oh! Oh oh! oh Oh! oh Oh!)
I love the way you love...
(oh Oh! oh Oh! oh Oh! Oh oh! oh Oh! oh Oh!)
I love the way...
And I love the way you love me, I place no one above, I don't want true love...
And I love the way you love me, and baby no matter what,
I love the, I love the way you love...
One, for all the special love,
two, a sensitive and tender touch,
three, because you please, you bring out the best in me,
'cause when I think about your lovin' then I got a good beat,
I get excited from the feelin' that is given to me,
so won't you keep me comin' baby 'cause I love the joy you bring, oh I love...
The way you love me, I place no one above, I don't want true love...
And I love the way you love me, and baby no matter what,
I love the, I love the way you love...