- published: 21 Sep 2008
- views: 26598309
'+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; })); }); -->
Slinger Francisco ORTT CMT OBE (born July 9, 1935), better known as Mighty Sparrow, is a calypso singer, songwriter, and guitarist of Trinidadian citizenship. Known as the "Calypso King of the World", he is one of the best-known and most successful calypsonians. He has won Trinidad's Carnival Road March competition eight times, Calypso King/Monarch eight times, and has twice won the Calypso King of Kings title.
Slinger Francisco was born in the fishing village of Grand Roy, Grenada, West Indies on July 9, 1935. He moved to Trinidad with his mother, his father having relocated there in 1937. He grew up in Port of Spain. He began singing as a small child, but his love of calypso was discouraged while at Newtown Boys Catholic School, where he sang in the choir. At the age of 14 he joined a steel band comprising neighbourhood boys, and performed with the band at Carnival.
He received his performing name "Little Sparrow" during his early career, as a result of his energetic stage performances:
"Try a Little Tenderness" is a song written by Jimmy Campbell, Reg Connelly and Harry M. Woods. It was first recorded on December 8, 1932, by the Ray Noble Orchestra (with vocals by Val Rosing). Both Ruth Etting and Bing Crosby recorded it in 1933.
Subsequent recordings and performances were done by such recording artists as Otis Redding, Pat O'Malley in Jack Hylton's Big Band, Eddie Cantor, Little Miss Cornshucks (1951), Michael Buble, Jimmy Durante, Frank Sinatra, Mel Tormé, Rod Stewart, Frankie Laine, Percy Sledge, Earl Grant, Al Jarreau, Sheena Easton, Rita Reys, Nina Simone, Etta James, Tina Turner, Three Dog Night, John Miles and Andrew Strong, the Von Bondies, Cássia Eller, Florence and the Machine, and Cyndi Lauper (live at the White House). It was also performed by a studio orchestra during the opening credits of Dr. Strangelove and by Dr. John and Bennie Wallace on the Bull Durham soundtrack, and it was sung by Chris Brown for the movie This Christmas.
Aretha Franklin covered the song in 1962 for her LP The Tender, the Moving, the Swinging Aretha Franklin, on Columbia Records. After hearing it, Sam Cooke added it to his live shows, as can be heard on his live LP Sam Cooke at the Copa (1964). In Cooke's version, only two verses are included, as part of a medley (with "(I Love You) For Sentimental Reasons" and "You Send Me").
John James Osborne (12 December 1929 – 24 December 1994) was an English playwright, screenwriter, actor, known for his excoriating prose and intense critical stance towards established social and political norms. The success of his 1956 play Look Back in Anger transformed English theatre.
In a productive life of more than 40 years, Osborne explored many themes and genres, writing for stage, film and TV. His personal life was extravagant and iconoclastic. He was notorious for the ornate violence of his language, not only on behalf of the political causes he supported but also against his own family, including his wives and children.
Osborne was one of the first writers to address Britain's purpose in the post-imperial age. He was the first to question the point of the monarchy on a prominent public stage. During his peak (1956–1966), he helped make contempt an acceptable and now even cliched onstage emotion, argued for the cleansing wisdom of bad behaviour and bad taste, and combined unsparing truthfulness with devastating wit.
So much soul
This version of "Try a Little Tenderness" is from the 1967 Stax/Volt tour which we released on DVD in 2007 as "Stax/Volt Revue Live In Norway 1967." Other artists featured in the concert were Sam & Dave, Booker T & the MGs, Eddie Floyd and Arthur Conley. Our archive contains many performances from artists on the Stax Records label including Isaac Hayes, the Staple Singers, Johnnie Taylor, Albert King, Luther Ingram, Carla Thomas and over 90 minutes of amazing Otis Redding footage. Reelin' In The Years Productions houses the world's largest library of music footage, containing over 20,000 hours of material covering nearly every genre from the last 60 years. We have live concerts, TV appearances, interviews, in-studio segments, b-roll and more. In addition to music we have thousands of hour...
iTunes: http://defct.de/srtaltit | Beatport: http://defct.de/srtaltbp | Traxsource: http://defct.de/srtaltts | Google Play: http://defct.de/srtaltgp | Spotify: http://defct.de/srtaltsp | Apple Music: http://defct.de/srtaltam | Deezer: http://defct.de/srtaltdz | Tidal: http://defct.de/srtalttd Long-time friend of Defected and certified house legend Sandy Rivera flexes his club banger credentials in this soft but tough new track. Otherwise known as Kings Of Tomorrow, Sandy’s fruitful two-decade-long history with Defected is well known, and long may it continue when the relationship brings forth gems like this. ‘Try A Little Tenderness’ features Sandy’s obligatory commanding vocal hook, accompanied by a snarling, earth-shuddering bass. Unassuming but destined to do some serious damage acros...
Caught in the Act is the third live album released by Canadian Jazz Crooner Michael Bublé. The album was released on July 8, 2005. Caught in the Act received a Grammy nomination for Best Traditional Pop Vocal Album Vocals: Michael Bublé Musical direction, piano: Alan Chang Guitar: Randy Napoleon Drums: Robert Perkins Bass: Craig Polasko Alto Saxophone: Mark Small Alto Saxophone: Robert Wilkerson Baritone Saxophone: Frank Basile Trombone: Josh Brown Trombone: Nick Vagenas Lead Trumpet: Jumaane Smith Trumpet: Bryan Lipps Trumpet: Justin Ray
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Check out Jamie Bruce singing 'Try A Little Tenderness' in his blind audition on The Voice UK 2013. Holly Willoughby and Reggie Yates host the penultimate round of blind auditions as the search for the UK's next vocal talent continues. Places on each of the coaches' teams are increasingly limited, and the fight for a coveted spot on either Team Will, Team Danny, Team Jessie or Team Tom is fiercer than ever. Each of the four megastar coaches must continue to choose artists to join their team based only on what they hear, and use their experience, vision and talent to spot astounding vocal ability. Some artists will leave the competition at this point, but for others this...
Provided to YouTube by Jive Try A Little Tenderness (Main Version) · Chris Brown This Christmas - Songs From The Motion Picture ℗ 2007 Zomba Recording, LLC Released on: 2007-11-20 Composer, Lyricist: Jimmy Campbell Composer, Lyricist: Reginald Connelly Composer, Lyricist: Harry Woods Producer: Bryan Michael Cox Producer: Kendrick Dean Auto-generated by YouTube.
Duets - Paul Giamatti - Try A Little Tenderness original soundtrack https://youtu.be/RT2mL77tHYI
REMASTERED IN HD!! Official Music Video by Joan Osborne performing One Of Us. #JoanOsborne #OneOfUs #Remastered
This great playing blackguard was formerly owned by John Osborne of the Brothers Osborne. The body has been refinished by Nashville Fretworks. Comes with a hard case. https://cartervintage.com/collections/fender-electrics/products/fender-telecaster-1952
Follow Grace Bowers: https://lnk.to/tellmewhyudothat Full Rig Info: https://www.premierguitar.com/videos/rig-rundown/grace-bowers The guitar-playing phenom shows off what she likes about this cherry 335. Guitarist Grace Bowers is a 17-year old California transplant tearing it up in Nashville. Currently working on her first album with producer John Osborne of the Brothers Osborne, Bowers invited John Bohlinger and the PG team to walk through her studio and live rig. Full Rig Info: https://www.premierguitar.com/videos/rig-rundown/grace-bowers Subscribe to PG's Channel: http://bit.ly/SubscribePGYouTube Win Guitar Gear: https://bit.ly/GiveawaysPG Don't Miss a Rundown: http://bit.ly/RIgRundownENL Merch & Magazines: https://shop.premierguitar.com PG's Facebook: https://facebook.com/premiergu...
Hello Friends Welcome to E Planet. In this video, we discussed Biography Of John Osborne . John Osborne Biography in Hindi john Osborne, john osborne look back in anger, john osborne biography, angry young men, leslie paul, 12 angry young men, look back in anger full movie, john osborne look back in anger,john osborne look back in anger mcq, john osborne mcq ,john osborne look back in anger in tamil, john osborne one of us, john osborne look back in anger malayalam, john osborne art of living, lohn osborne life and work, john osborne 2022, kitchen sink drama, john osborne plays, look back in anger play, dejavu play by john osborne, john osborne autobiography, english playwrights, 1950s writers, get carter movie download, get carter 1971, john osborne as gangster, john osborne marriages,...
Look Back in Anger by John Osborne - NET | SET | British Literature Series - Heena Wadhwani #lookbackinanger #johnosborne #ugcnet #ugcnetenglish #englishliterature #netjrf #hsstenglish #ntanetexam #ugcnetsyllabus #ugcnetexampreparation #ugcnet #ntanetjrf #netjrfenglishliterature #freestudymaterialforenglishnetexam #freestudymaterialsforenglishnetexams ⚪ Join us ⚪ Contact us on 👉 9387839871, 9447705779, 9745842322 Our website 👉 www.vallath.in Order our books on 👉 www.bodhitreepublications.com Order our literary lifestyle products 👉 https://www.theqriosityshop.com/ Our telegram Public Group 👉 https://t.me/vallathstesgroup Follow us on Instagram 👉 https://instagram.com/kalyanivallath Our facebook page 👉 https://www.facebook.com/DrKalyaniVallath
Joan Osborne - One of Us (Lyrics) Thanks for watching, subscribe and share . . . #joanosborne #oneofus #lyrics --- If you like what you see, consider support the chanel: https://www.buymeacoffee.com/PhantomCo ☕ I really apreciate your contributions... ---
Plot Summary Of Look Back In Anger By John Osborne. - Look Back In Anger By John Osborne Summary Summary Of Look Back In Anger By John Osborne. - look back in anger by john osborne summary with key points. look back in anger summary. look back in anger by john osborne summary. look back in anger by john osborne bangla summary. Welcome to our channel! In this video, we present a captivating summary of the iconic play "Look Back in Anger" written by John Osborne. 🎭 Join us as we dive into the world of post-war British drama and explore the themes of love, class, and societal discontent. "Look Back in Anger" is a powerful portrayal of the tensions and struggles faced by the younger generation in a changing society. Through our detailed analysis, we'll dissect the dynamic relationships, ...
I do not own any rights to this song. Original guitars removed.
Guitarist John Osborne (Brothers Osborne) reacts to the Gibson Custom Murphy lab aged guitars. ▶Gear used in this video: Get your very own Gibson CustomMurphy Lab guitars HERE: https://bit.ly/45Bdl6Q John is playing a MESA/Boogie Fillmore 50 amp - get YOURS here: https://bit.ly/3M70vGq In this episode of the Murphy Lab Artist Series, guitarist John Osborne from Brothers Osborne talks about his love of vintage guitars and demos Gibson Custom Shop Murphy Lab-aged guitars. As he plays the guitars, John comments about how he loves the way vintage guitars check, the various ways the finish checking occurs, and how it makes each guitar special. As he tries out a 1963 Firebird V With Maestro Vibrola from the Murphy Lab, he discusses the "insane" checking and notes the way the guitar "rings" a...
Slinger Francisco ORTT CMT OBE (born July 9, 1935), better known as Mighty Sparrow, is a calypso singer, songwriter, and guitarist of Trinidadian citizenship. Known as the "Calypso King of the World", he is one of the best-known and most successful calypsonians. He has won Trinidad's Carnival Road March competition eight times, Calypso King/Monarch eight times, and has twice won the Calypso King of Kings title.
Slinger Francisco was born in the fishing village of Grand Roy, Grenada, West Indies on July 9, 1935. He moved to Trinidad with his mother, his father having relocated there in 1937. He grew up in Port of Spain. He began singing as a small child, but his love of calypso was discouraged while at Newtown Boys Catholic School, where he sang in the choir. At the age of 14 he joined a steel band comprising neighbourhood boys, and performed with the band at Carnival.
He received his performing name "Little Sparrow" during his early career, as a result of his energetic stage performances:
(Talk to me) I am not at peace honey
(Talk to me) tell me you love me sincerely
(Talk to me) darling don't remain silent
(Talk to me) because I love the excitement
Doobdidoob doodeeyah
For when you talk I fell like a man
And I get more zeal and inspiration
Even though I know it is mama i gizem.
Refrain:
Tell me you think I'm sweeter than honey,
Tell me if I ever leave you you'll kill me.
Scratch up me back bite off me ears when I ask "Whats the matter?"
Tell me there's too much wood in the fire.
(Promise me) Promise me everything you wish
(Promise me) Give me in french or in spanish
(Promise me) Say something good or something bad
(Promise me) As long as I make you talk I'm glad
Doobdidoob doodeeyah
Our little love talk has turned me on
I could carry on from dusk till dawn
As long as I hear your sexy conversation.
Refrain
(Do you need) Mama rev up your engine
(Do you need) Give vent to your feelings
(Do you need) Honey bunch now some at all
(Do you need) Shame to the must get on and fall
I want a nice little mournful cry
Like uhoo, uhoo, uhoo, uhoo