- published: 20 Dec 2009
- views: 150823717
'+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; })); }); -->
The Isley Brothers (/ˈaɪzliː/) are an American musical group originally from Cincinnati, Ohio, originally a vocal trio consisting of brothers O'Kelly Isley, Jr., Rudolph Isley and Ronald Isley. The group has been cited as having enjoyed one of the "longest, most influential, and most diverse careers in the pantheon of popular music".
Alongside a fourth brother, Vernon, the group originally performed gospel music until Vernon's death a few years after its original formation. After moving to the New York City area in the late 1950s, the group had modest chart successes during their early years, first coming to prominence in 1959 with their fourth single, "Shout", written by the three brothers. Initially a modest charted single, the song eventually sold over a million copies. Afterwards the group recorded modestly successful works for a variety of labels, including the top 20 single, "Twist and Shout" and the Motown single, "This Old Heart of Mine (Is Weak for You)" before recording and issuing the Grammy Award-winning hit, "It's Your Thing" on their own label, T-Neck Records.
The Real Deal may refer to:
The Real Deal is the 21st album released by The Isley Brothers on August 21, 1982. The album is notable for the group's decision to alter their trademark funk rock sound in the 1970s with the then-current early 1980s electro funk scene dominated by Rick James, Prince, Zapp and The Gap Band.
Following the releases of two 1981 albums, the gold-selling Grand Slam and the lesser-successful Inside You, the Isley Brothers were finding themselves in a rut following a successful nine-year run of gold and platinum albums and a succession of hit singles that had made them one of the top-selling R&B/funk bands of the 1970s. After hearing the sounds of the Gap Band and Rick James, The Isleys (Kelly, Rudy, Ron, Ernie and Marvin) and brother-in-law Chris Jasper, whose role in the Isleys had grown to the point where he was adding background vocals himself alongside longtime lead vocalist Ron Isley and also added in a vocoder co-lead while playing synthesizers, which sometimes was overdubbed atop Marvin Isley's bass guitar riffs.
The Real Deal is a monthly news magazine and daily website about the real estate industry, with a focus on New York City and South Florida. The magazine was started in 2003, and focuses on both commercial and residential real estate. The magazine was called "the must-read news source for real estate news," in a profile in the Los Angeles Times in 2009, and "the hot sheet for NYC real estate professionals," by the New York Post.
Amir Korangy of Korangy Publishing founded The Real Deal in April 2003. The magazine was his third venture into publishing, the first being the Gringo Gazette, a weekly newspaper in Baja, Mexico targeted at expatriates, and the second being the Washington Free Press, a weekly tabloid in Washington, D.C. Korangy was named one of the 100 most powerful figures in New York City real estate by the New York Observer in 2009. The magazine's editor-in-chief since 2003 is Stuart W. Elliott.
Shortly after its founding, the magazine was sued for trademark infringement by the late investment banker and businessman Bruce Wasserstein, who owned The Deal, the business publication focused on covering mergers and acquisitions. The Real Deal prevailed in the lawsuit after the case went to trial in 2004.
Dickinson's Real Deal is a UK modern antiques and collectables television programme presented by David Dickinson. It is broadcast on ITV as part of the afternoon schedule, and is repeated on sister channel ITV3.
A US version of the show, produced by Zodiak USA and titled simply Real Deal, was aired for one series on the History channel. The format was the same except that the US show lacked the on-screen host for intervention on the deals.
The shows are recorded at UK venues to which members of the public are invited to bring their antiques and collectables. Independent valuers estimate the value of these items.
The items are then passed to the dealers, who make their own valuation and try to purchase them by placing a cash offer on the table. David Dickinson may step in and give some advice and this valuers' estimations are revealed to the owner, the television audience and the dealer. The dealer's offer may be adjusted.
The seller then decides whether to accept or decline what the dealer has offered. If the deal is declined items go to auction.
Real Deal is an album by David Murray and Milford Graves released on the Japanese DIW label. It was released in 1994 and features eight duo performances by Murray and Graves.
The Allmusic review awarded the album 3 stars.
Real Deal is an American television series aired on the History channel which premiered in December 2011. The show brings together sellers of antiques, collectables and historical artifacts with professional buyers. The show is based on the UK TV show Dickinson's Real Deal, except the US show lacks the independent sellers and an on-screen host.
It follows the "sellers" who try to pitch their items to the "dealers". The dealers will offer an amount after a brief evaluation of the item, based on their professional evaluation and years of experience. After debating on the price, the seller can accept the cash offer, or choose to go to auction and potentially lose money or exceed the dealer's offer. The auction is hosted at Don Presley's auction house in Anaheim, CA.
The first season had a wide variety of items presented to the dealers, including a restored gas pump, Native American artifacts, a collection of autographed footballs, an electroshock therapy unit, antique bicycles, a woolly mammoth tooth, comic books, a 1960's MK II Lincoln and a brass spitoon from a Nevada mine and brothel. Some sellers took the cash offers, others opted to roll the dice and go to auction. Many of the sellers ended up with a much smaller auction price, while others sold their items for a little to a lot more than the dealers' offer.
Music video by The Isley Brothers performing Contagious. (C) 2001 SKG Music L.L.C. #TheIsleyBrothers #Contagious #Vevo
"For the Love of You, Pts. 1 & 2" by The Isley Brothers Listen to The Isley Brothers: https://theisleybrothers.lnk.to/listenYD Subscribe to The Isley Brothers Youtube channel: https://theisleybrothers.lnk.to/subscribeYD Watch more The Isley Brothers videos: https://theisleybrothers.lnk.to/listenYD/youtube Follow The Isley Brothers: Facebook: https://theisleybrothers.lnk.to/followFI Instagram: https://theisleybrothers.lnk.to/followII Twitter: https://theisleybrothers.lnk.to/followTI Website: https://theisleybrothers.lnk.to/followWI Spotify: https://theisleybrothers.lnk.to/followSI Chorus: I wanna be living for the love of you Ah, yes I am All that I'm giving is for the love of you Alright now #TheIsleyBrothers #ForTheLoveOfYou #TheHeatIsOn
Music video by The Isley Brothers performing Busted. (C) 2003 Geffen Records #TheIsleyBrothers #Busted #Vevo
"Footsteps in the Dark, Pts. 1 & 2" by The Isley Brothers Listen to The Isley Brothers: https://theisleybrothers.lnk.to/listenYD Subscribe to The Isley Brothers Youtube channel: https://theisleybrothers.lnk.to/subscribeYD Watch more The Isley Brothers videos: https://theisleybrothers.lnk.to/listenYD/youtube Follow The Isley Brothers: Facebook: https://theisleybrothers.lnk.to/followFI Instagram: https://theisleybrothers.lnk.to/followII Twitter: https://theisleybrothers.lnk.to/followTI Website: https://theisleybrothers.lnk.to/followWI Spotify: https://theisleybrothers.lnk.to/followSI Chorus: I, keep hearing footsteps, baby In the dark, oh, in the dark Why? I keep hearing footsteps, baby In the dark Oh, in the dark, woo #TheIsleyBrothers #FootstepsInTheDark #GoForYourGuns
Official music video for The Isley Brothers featuring 2Chainz - The Plug - off their new album Make Me Say It Again, Girl Download & Stream: officialisleybrothers.com/social + Subscribe to The Isley Brothers on YouTube: https://www.youtube.com/channel/UCSUUJi1Q3tiY3eFjPtRVBfg + Get exclusive merch: https://officialisleybrothers.com/shop/ + Follow The Isley Brothers: https://twitter.com/TheRealRonIsley https://www.facebook.com/isleybrothers https://www.instagram.com/theisleybrothers https://www.officialisleybrothers.com
"Voyage to Atlantis" by The Isley Brothers Listen to The Isley Brothers: https://theisleybrothers.lnk.to/listenYD Watch more The Isley Brothers videos: https://theisleybrothers.lnk.to/listenYD/youtube Subscribe to The Isley Brothers Youtube channel: https://theisleybrothers.lnk.to/subscribeYD Follow The Isley Brothers: Facebook: https://theisleybrothers.lnk.to/followFI Instagram: https://theisleybrothers.lnk.to/followII Twitter: https://theisleybrothers.lnk.to/followTI Website: https://theisleybrothers.lnk.to/followWI Spotify: https://theisleybrothers.lnk.to/followSI Chorus: I'll always (Come back to you) I'll always (Come back to you) I'll always (Come back to you) I'll always (Come back to you) #TheIsleyBrothers #VoyagetoAtlantis #OfficialAudio
Provided to YouTube by Epic/Legacy Footsteps in the Dark, Pts. 1 & 2 · The Isley Brothers Go for Your Guns ℗ 1977 Epic Records, a division of Sony Music Entertainment Released on: 1977-08-21 Background Vocal, Lead Vocalist, Composer, Lyricist: Ronald Isley Co- Producer: Malcom Cecil Background Vocal, Composer, Lyricist: O'Kelly Isley Background Vocal, Composer, Lyricist: Rudolph Isley Co- Producer: Robert Margouleff 12- String Guitar, Background Vocal, Bass, Congas, Drums, Electric Guitar, Percussion, Composer, Lyricist: Ernie Isley Background Vocal, Bass, Composer, Lyricist: Marvin Isley Composer, Lyricist: Christopher Jasper Background Vocal, Percussion, Piano, Synthesizer, Tambourine: Chris Jasper Auto-generated by YouTube.
"Between the Sheets" by The Isley Brothers Listen to The Isley Brothers: https://theisleybrothers.lnk.to/listenYD Subscribe to The Isley Brothers official Youtube channel: https://theisleybrothers.lnk.to/subscribeYD Watch more of The Isley Brothers videos: https://theisleybrothers.lnk.to/listenYD/youtube Follow The Isley Brothers: Facebook: https://theisleybrothers.lnk.to/followFI Instagram: https://theisleybrothers.lnk.to/followII Twitter: https://theisleybrothers.lnk.to/followTI Website: https://theisleybrothers.lnk.to/followWI Spotify: https://theisleybrothers.lnk.to/followSI Chorus: Ooooooooh, baby, baby I feel your love surrounding me Ohohohohoh uhhh, uh, baby, baby Making love between the sheets #TheIsleyBrothers #BetweenTheSheets #OfficialAudio
The Tiny Desk is working from home for the foreseeable future. Introducing NPR Music's Tiny Desk (home) concerts, bringing you performances from across the country and the world. It's the same spirit — stripped-down sets, an intimate setting — just a different space. Bobby Carter | Aug. 18, 2021 Before the Isley Brothers played "That Lady" during this Tiny Desk (at Home) concert, lead singer and founding member Ronald Isley shared two stories about the song that perfectly encapsulates the scope of their nearly seven-decade career. "It reminds me of going way back, when we had Jimi Hendrix living at the house and playing. We went on to meet a young fellow by the name of Kendrick Lamar who sampled the record and we got a Grammy award for it." At the Tiny Desk, we've hosted shows from supers...
Provided to YouTube by Universal Music Group Lucky Charm · The Isley Brothers Body Kiss ℗ 2003 SKG Music L.L.C. Released on: 2003-01-01 Producer, Associated Performer, Recording Arranger, Studio Personnel, Co- Mixer: R. Kelly Associated Performer, Guitar: Donnie Lyle Associated Performer, Keyboards: Rodney East Studio Personnel, Recording Engineer, Mixer, Programmer: Ian Mereness Studio Personnel, Recording Engineer: Abel Garibaldi Studio Personnel, Recording Engineer: Andy Gallas Studio Personnel, Recording Engineer, Assistant Mixer, Programmer: Jason Mlodzinkski Programmer: Brandon Hull Composer Lyricist: R. Kelly Auto-generated by YouTube.
The Isley Brothers (/ˈaɪzliː/) are an American musical group originally from Cincinnati, Ohio, originally a vocal trio consisting of brothers O'Kelly Isley, Jr., Rudolph Isley and Ronald Isley. The group has been cited as having enjoyed one of the "longest, most influential, and most diverse careers in the pantheon of popular music".
Alongside a fourth brother, Vernon, the group originally performed gospel music until Vernon's death a few years after its original formation. After moving to the New York City area in the late 1950s, the group had modest chart successes during their early years, first coming to prominence in 1959 with their fourth single, "Shout", written by the three brothers. Initially a modest charted single, the song eventually sold over a million copies. Afterwards the group recorded modestly successful works for a variety of labels, including the top 20 single, "Twist and Shout" and the Motown single, "This Old Heart of Mine (Is Weak for You)" before recording and issuing the Grammy Award-winning hit, "It's Your Thing" on their own label, T-Neck Records.
Looking at the clock it's about that time
Can I introduce myself?
I been watching you from far,and it's been too long can I have this song
I just get so mesmerized when you up and against that pole
I just wanna take you home
Who are they to criticize
How you decide to make your money
I will spend every dime on you baby, take it from me
Since I saw you in the corner
Had to let you know I want ya
All these bitches say you boozhie
Didn't stop me from approaching
I don't give a fuck, what your reputation is
I just won't repeat this night and do it all over again
These are the thoughts in my mind
Hope you don't think I'm crazy
Just don't ever try to play me
These are rules am engaging
I sit back in the back and wait for the perfect time
Seems you don't have the time
Wish I could reverse the time
Pretty little thang, give me love out of a sippy cup
Sit me up, finish up, zip it up, this is lust
Walk up in this bitch said I need that (need that)
Shawty caught my eyes said need that (need that)
Let me get a feel, man I hope it feel real
I'm the fuckin' real deal,bend over bitch you know the drill
Walk up in this bitch said I need that (need that)
Shawty caught my eyes said need that (need that)
Let me get a feel, man I hope it feel real
I'm the fuckin' real deal,bend over bitch you know the drill
Pretty pussy popping put your back into that,hand stance
Am about to have a heart attack, let me handle that
Can we go somewhere private, show me for a private dance
You been working way too hard, I just think you need a man
I can be your fucking man, we can fuck and do some things
I can make the headboard bang, let me make your clit sing
Im not tryna be rude
I just wanna see your birthday suit, if it's cool with you
Let me taste, taste your best friend too
Knew you were a super freak
I could only daydream about it, now it's all reality
I pretend she was you when you make a squirt [?]
Am I choking you too hard? Hope nobody hears you scream
Am a little crazy when it comes to you baby
We can live together, you're my midnight fantasy
I won't let them hurt you
I be right back to the ATM
These are the thought in my conscious can you hear them? (hear them)
Walk up in this bitch said I need that (need that)
Shawty caught my eyes said need that (need that)
Let me get a feel, man I hope it feel real
I'm the fuckin' real deal,bend over bitch you know the drill
Don't stop, keep dirty dancing (dancing)
I like it when you turn around dancing (dancing)
Let me put my hand on it baby keep dancing (dancing)
Don't stop baby keep on dirty dancing
Walk up in this bitch said I need that (need that)
Shawty caught my eyes said need that (need that)
Let me get a feel, man I hope it feel real
I'm the fuckin' real deal,bend over bitch you know the drill