- published: 25 Dec 2009
- views: 574445728
'+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; })); }); -->
Herbert Jay Solomon (April 16, 1930 – July 1, 2003), known by his stage name Herbie Mann, was an American jazz flautist and important early practitioner of world music. Early in his career, he also played tenor saxophone and clarinet (including bass clarinet), but Mann was among the first jazz musicians to specialize on the flute. His most popular single was "Hijack", which was a Billboard number-one dance hit for three weeks in 1975.
Mann emphasized the groove approach in his music. Mann felt that from his repertoire, the "epitome of a groove record" was Memphis Underground or Push Push, because the "rhythm section locked all in one perception."
Herbie Mann was born in Brooklyn, New York, to Jewish parents, Harry C. Solomon (May 30, 1902 – May 31, 1980), who was of Russian descent, and Ruth Rose Solomon (née Brecher) (July 4, 1905 – November 11, 2004), who was born in Bukovina, Austria-Hungary but immigrated to the United States with her family at the age of 6. Both of his parents were dancers and singers, as well as dance instructors later in life. He attended Lincoln High School in Brighton Beach. His first professional performance was playing the Catskills resorts at age 15. In the 1950s Mann was primarily a bop flutist, playing in combos with artists such as Phil Woods, occasionally playing bass clarinet, tenor saxophone and solo flute.
"Lady Marmalade" is a song written by Bob Crewe and Kenny Nolan. It became a popular hit in 1975, recorded by the American girl group Labelle. The song is famous for its sexually suggestive chorus of "Voulez-vous coucher avec moi (ce soir)?", which translates into English as "Do you want to sleep with me (tonight)?" Labelle held the number-one spot on the Billboard Hot 100 chart for one week, and also topped the Canadian RPM national singles chart.
The song has had many cover versions over the years. In 1998, girl group All Saints released a cover of the song that peaked at number one on the UK Singles Chart. The 2001 version by singers Christina Aguilera, Lil' Kim, Mýa, and Pink, recorded for the Moulin Rouge! soundtrack was a number-one hit on the Billboard Hot 100 for 5 weeks. "Lady Marmalade" was also a song to reach number one by two different musical acts in America.
Labelle's version of "Lady Marmalade" was produced by Allen Toussaint and Vicki Wickham. It was released on August 3, 1974 as the first single from the album Nightbirds. The song was inspired by Bob Crewe's first-hand observations of New Orleans. After it was first recorded by Kenny Nolan's group Eleventh Hour in 1974, on Eleventh Hour's Greatest Hits LP, Labelle's producer Allen Toussaint decided to record it for Nightbirds. Patti LaBelle sang lead vocals on "Lady Marmalade" with backing vocals being contributed by band mates Nona Hendryx and Sarah Dash. The song's chorus, "Voulez-vous coucher avec moi (ce soir)?", appeared previously in the play A Streetcar Named Desire, uttered by the promiscuous Blanche DuBois. Lyrically, "Lady Marmalade" is about a prostitute. Patti LaBelle, the lead female vocal of the band, expressed that, "I didn't know what it was about. Nobody, I swear this is God's truth, nobody told me what I'd just sung a song about."
Herbie the Love Bug is an anthropomorphic 1963 Volkswagen Beetle, a character that is featured in several Disney motion pictures starting with the 1968 feature film The Love Bug. He has a mind of his own and is capable of driving himself, and is also a serious contender in auto racing competitions. Throughout most of the franchise, Herbie is distinguished by red, white and blue racing stripes from front to back bumper, a racing-style number "53" on the front luggage compartment lid, doors, and engine lid, and a yellow-on-black '63 California license plate with the lettering "OFP 857".
Herbie's origins are firmly established in The Love Bug (1968). He was bought from Peter Thorndyke's showroom by San Francisco socialite Mrs. Van Luit for her upstairs maid, but returned shortly afterwards due to reliability problems, and purchased by race-driver Jim Douglas (Dean Jones), who had earlier stood up for him against the pompous Thorndyke (David Tomlinson). Tennessee Steinmetz (Buddy Hackett), Jim's friend and housemate, names the car "Herbie" after his uncle Herb, a professional boxer whose broken nose greatly resembled the hood of a Volkswagen Beetle.
The Love Bug (1968), sometimes referred to as Herbie the Love Bug, is the first in a series of comedy films made by Walt Disney Productions that starred an anthropomorphic pearl-white, fabric-sunroofed 1963 Volkswagen racing Beetle named Herbie. It was based on the 1961 book Car, Boy, Girl by Gordon Buford.
The movie follows the adventures of Herbie, Herbie's driver, Jim Douglas (Dean Jones), and Jim's love interest, Carole Bennett (Michele Lee). It also features Buddy Hackett as Jim's enlightened, kind-hearted friend, Tennessee Steinmetz, a character who creates "art" from used car parts. English actor David Tomlinson portrays the villainous Peter Thorndyke, owner of an auto showroom and an SCCA national champion who sells Herbie to Jim and eventually becomes Jim's racing rival.
Herbie may refer to:
Fictional characters named Herbie:
People named Herbie:
People nicknamed Herbie:
Other:
REMASTERED IN HD! Official Music Video for Lady Marmalade performed by Christina Aguilera, Lil' Kim, Mya, Pink. Follow Christina Aguilera Instagram: https://www.instagram.com/xtina Twitter: https://twitter.com/XTINA Facebook: https://www.facebook.com/christinaaguilera Website: https://www.christinaaguilera.com (C) 2002 Interscope Records #ChristinaAguilera #LilKim #Mya #Pink #LadyMarmalade #Remastered
#ladymarmalade
Find Christina Aguilera on: 📜 Lyrics: https://www.pillowlyrics.com/lady-marmalade-christina-aguilera-feat-mya-pink-lil-kim-missy-elliott/ 📜 VISIT OUR OFFICIAL LYRICS WEBSITE: https://www.pillowlyrics.com/ 📜 Lyrics: https://www.pillowlyrics.com/pink-pnk-lyrics/ Lady Marmalade - Christina Aguilera (Feat. Mya, Pink, Lil' Kim, Missy Elliott) (Lyrics) Lyrics video for "Lady Marmalade" by Christina Aguilera (Feat. Mya, Pink, Lil' Kim, Missy Elliott). ✅Click the 🔔 to stay updated on the latest uploads! 👍 Thumbs Up if you like this video. ❤️Thank you! ❤️ You can also find us on: ▪️ Facebook - https://www.facebook.com/pillowmusicyt ▪️ Instagram - https://www.instagram.com/pillowmusicyt/ ▪️ Twitter - https://twitter.com/PillowMusic1 📜 VISIT OUR OFFICIAL LYRICS WEBSITE: https://www.pillowlyrics...
Christina Aguilera, Lil' Kim, Mýa and Pink are performing song Lady Marmalade. Mýa begins the song then Pink, Lil' Kim and at last Christina Aguilera. The original of this song is by Labelle. This video is very sexy. Missy Elliott is appears in the video too.
The Voice Thailand All Stars : ทุกวันอาทิตย์ เวลา 18.00 น. ทางช่อง ONE31 ติดตามข้อมูลเพิ่มเติมของรายการ The Voice Thailand ได้ที่ YT : https://youtube.com/c/TheVoiceThailand FB : http://www.facebook.com/TheVoiceThailand IG : https://www.instagram.com/thevoiceth/ TT : https://www.tiktok.com/@thevoicethail... TW : https://twitter.com/TheVoiceThai ติดตามทุกความเคลื่อนไหวของป้าคิ้ม ได้ที่ YT : https://youtube.com/c/JenniferKimOffi... FB : https://www.facebook.com/J.Kim4show IG : https://instagram.com/j.kim4real IG : https://instagram.com/j.kim4fan TT : https://www.tiktok.com/@jkim4fan #TheVoiceTH #TheVoiceAllStarsTH #เจนนิเฟอร์คิ้ม
We shot this video last year at our family Christmas Card shoot! Song is 'Lady Marmalade' by Christina Aguilera, Pink, Mya, Lil Kim
Watch the official music video for All Saints - "Lady Marmalade" from the album "All Saints" Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.com/ RHINO is the official YouTube channel of the greatest music catalog in the world. Founded in 1978, Rhino is the world's leading pop culture label specializing in classic rock...
There was no lyric video so I made one of my own. 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 favor of fair use. ~Tags~ Christina Aguilera Pink P!nk Lady Marmalade Mya Lil Kim Missy Elliot Moulin Rouge Patty Labelle The Labelles Lyrics Words The Voice Adam Lambert Maroon 5 Carson Daly Cee Lo Green Blake Music Video Collaborations Duet Group Pharrell Williams Gwen Stefani Liza Koshi
Artist: Christina Aguilera, Lil' Kim, Mýa, Pink Album: Moulin Rouge! Song Title: Lady Marmalade (From "Moulin Rouge" Soundtrack) Producer(s): Rockwilder, Missy Elliott Songwriter(s): Bob Crewe, Kenny Nolan, Kimberly Jones, Melissa Elliott Genre: Pop, Hip-Hop, Hip-Hop Soul, R&B Realesed: April 23, 2001 Recorded: January 2001 Format: Digital Single Label: Interscope Lenght: 4:25 Lady Marmalade (From "Moulin Rouge" Soundtrack) Bought The Digital Album "Moulin Rouge (Soundtrack From The Motion Picture)" By Various Artists Available On Itunes: https://music.apple.com/gb/album/moulin-rouge-soundtrack-from-the-motion-picture/1440891578 "Lady Marmalade" From The Album "Moulin Rouge (Soundtrack From The Motion Picture)" Lyrics : Where's all my soul sistas? Lemme hear ya'll flow, sistas Hey s...
LABELLE - Lady Marmalade (1974) by 67aFrOsoUL ✿
Footage comes from Herbie Fully Loaded (2005) Herbie remains the Copyright of Walt Disney
Herbie winning the El Dorado 1st and 3rd place!
movie scene
This movie is the property of Disney and I do not claim any rights to it. The uploading of this movie is for the fans and for the sake of a higher quality.
Audio Track: Righeira & La Bionda - Vamos A La Playa 2001 (Dance Movement Remix 2001)
Now Spinning Magazine Playlist - New and Classical Albums From Deep Purple, Hawkwind, Steve Howe, Budgie Jethro Tull, Steve Hillage, The Rolling Stones, The Faces to jazz funk with Herbie Hancock, Kokomo, Average White Band plus new discoveries like Captain of the Lost Waves, and the return of Teaze this week’s playlist is as varied as it gets. What have you been playing? Thank You for Being Part of This Journey Now Spinning Magazine is driven by a love of music and the connections it creates. Your support – whether through comments, likes, shares, or becoming a Patron – fuels everything we do here. Remember, music is the healer and the doctor. Let’s keep spinning those discs and celebrating the joy music brings to our lives. Thank you for your continued support and for being part of...
Herbie the bug ENGLISH full Movie 💯
Herbert Jay Solomon (April 16, 1930 – July 1, 2003), known by his stage name Herbie Mann, was an American jazz flautist and important early practitioner of world music. Early in his career, he also played tenor saxophone and clarinet (including bass clarinet), but Mann was among the first jazz musicians to specialize on the flute. His most popular single was "Hijack", which was a Billboard number-one dance hit for three weeks in 1975.
Mann emphasized the groove approach in his music. Mann felt that from his repertoire, the "epitome of a groove record" was Memphis Underground or Push Push, because the "rhythm section locked all in one perception."
Herbie Mann was born in Brooklyn, New York, to Jewish parents, Harry C. Solomon (May 30, 1902 – May 31, 1980), who was of Russian descent, and Ruth Rose Solomon (née Brecher) (July 4, 1905 – November 11, 2004), who was born in Bukovina, Austria-Hungary but immigrated to the United States with her family at the age of 6. Both of his parents were dancers and singers, as well as dance instructors later in life. He attended Lincoln High School in Brighton Beach. His first professional performance was playing the Catskills resorts at age 15. In the 1950s Mann was primarily a bop flutist, playing in combos with artists such as Phil Woods, occasionally playing bass clarinet, tenor saxophone and solo flute.
[Lil' kim:]
Where's all mah soul sistas
Lemme hear ya'll flow sistas
[Mya:]
Hey sista, go sista, soul sista, flow sista
Hey sista, go sista, soul sista, go sista
[Mya:]
He met Marmalade down in old Moulin Rouge
Struttin' her stuff on the street
She said, "Hello, hey Joe, you wanna give it a go?" Oh! uh huh
[Chorus:]
Giuchie, Giuchie, ya ya dada (Hey hey hey)
Giuchie, Giuchie, ya ya here (here)
Mocha Chocalata ya ya (oh yea)
Creole lady Marmalade
[Lil' Kim:]
What What, What what
[Mya:]
ooh oh
Voulez vous coucher avec moi ce soir
Voulez vous coucher avec moi
[Lil' Kim:]
yea yea yea yea
[Pink:]
He sat in her boudoir while she freshened up
Boy drank all that Magnolia wine
On her black satin sheets is where he started to freak
yeah
[Chorus:]
Giuchie, Giuchie, ya ya dada (da-da-da)
Giuchie, Giuchie, ya ya here (here ohooh yea yeah)
Mocha Choca lata ya ya (yea)
Creole lady Marmalade
Voulez vous coucher avec moi ce soir (ce soir, what what what)
Voulez vous coucher avec moi
[Lil' Kim:]
yea yea uh
He come through with the money and the garter bags
I let him know we bout that cake straight up the gate uh
We independent women, some mistake us for whores
I'm sayin', why spend mine when I can spend yours
Disagree? Well that's you and I'm sorry
Imma keep playing these cats out like Atari
Wear ideal shoes get love from the dudes
4 bad ass chicks from the Moulin Rouge
hey sistas, soul sistas, betta get that dough sistas
We drink wine with diamonds in the glass
by the case the meaning of expensive taste
if you wanna Giuchie, Giuchie, ya ya
Mocha Chocalate-a what?
Real Lady Marmalade
One more time C'mon now
Marmalade... Lady Marmalade... Marmalade...
[Christina:]
hey Hey Hey!
Touch of her skin feeling silky smooth
color of cafe au lait alright
Made the savage beast inside roar until he cried,
More-more-more
[Pink:]
Now he's back home doin' 9 to 5
[Mya:]
Sleepin' the grey flannel life
[Christina:]
But when he turns off to sleep memories creep,
More-more-more
[Chorus:]
Giuchie, Giuchie, ya ya dada (da daeaea yea)
Giuchie, Giuchie, ya ya here (ooh)
Mocha Choca lata ya ya (yea)
Creole lady Marmalade
Voulez vous coucher avec moi ce soir (ce soir)
Voulez vous coucher avec moi (all my sistas yea)
Voulez vous coucher avec moi ce soir (ce soir)
Voulez vous coucher avec moi (C'Mon! uh)
[Missy:]
Christina...(oh Leaeaa Oh)
Pink... (Lady Marmalade)
Lil' Kim...(hey Hey! uh uh uh uh...)
Mya...(Oh Oh oooo)
Rot wilder baby...(baby)
Moulin Rouge... (0h)
Misdemeanor here...
Creole Lady Marmalade Ooh Yes......