- published: 16 Jun 2009
- views: 690016736
'+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; })); }); -->
Mary Jane Blige (/ˈblaɪʒ/; born January 11, 1971) is an American singer, songwriter, model, record producer and actress. Starting her career as a background singer on Uptown Records in 1989, Blige released her first album, What's the 411?, in 1992, and has released 11 studio albums since and made over 150 guest appearances on other albums and soundtracks.
A recipient of nine Grammy Awards, in addition to receiving a record of thirty Grammy nominations, Blige is one of few entertainers in history to have eight or more albums to reach multi-platinum status. My Life, in particular, is considered among the greatest albums ever recorded according to Rolling Stone,Time, and Vibe. For her part in combining hip-hop and soul in the early-1990s and its subsequent commercial success, Blige received the Legends Award at the World Music Awards. Blige also received the Voice of Music Award from performance rights organization ASCAP, with its official Jeanie Weems stating that "[Blige's] music has been the voice of inspiration to women worldwide in both struggle and triumph." Blige made Time magazine's "Time 100" list of influential individuals around the world in 2007.
A Good Woman may refer to:
REMASTERED IN HD! Official Music Video for Family Affair performed by Mary J. Blige. Follow Mary J. Blige Instagram: https://www.instagram.com/therealmaryjblige Twitter: https://twitter.com/maryjblige Facebook: https://www.facebook.com/maryjblige (C) 2001 Geffen Records #MaryJBlige #FamilyAffair #Remastered
REMASTERED IN HD! Music video by Mary J. Blige performing Be Without You. YouTube view counts pre-VEVO: 2,447,028. (C) 2005 Geffen Records #MaryJBlige #BeWithoutYou #Remastered
Mary J Blige Greatest Hits Full Album - Top Hits 2022 Mary J Blige - Top 20 Songs Mary J Blige ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🔔 If this music makes you happy , make sure to like ,subscribe & Please share this Mix on social pages (Facebook, Reddit, Twitter, etc.) so more people can listen together! We are a youtube music development company. We are looking forward to the cooperation of talented artists ✔ Please email here : [email protected] © ️ All rights belong to their respective owners, content ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ 🔔 R&B Songs is created to promote and support new artists, (musicians / labels, composers, producers, photographers / filmmakers) who want to create a fan base. Send your song or video on R&B Songs 🔔 We strive to find the best and most enjoyable music for you gu...
REMASTERED IN HD! Music video by Mary J. Blige performing No More Drama. (C) 2002 Geffen Records #MaryJBlige #NoMoreDrama #Remastered #Vevo
BET Awards Lifetime Achievement Award winner Mary J. Blige performs live with Lil Kim and Method Man in a performance to remember! #BETAwards SUBSCRIBE to #BET NOW! ►► http://bit.ly/1U0v9xG Download the BET NOW app for full episodes of your favorite BET shows and exclusive content! Connect with BET Web: http://www.BET.com Facebook: http://www.facebook.com/BET Twitter: http://www.twitter.com/BET Instagram: http://www.instagram.com/BET Google+: http://www.bet.us/gplusBET
The official video for Mary J. Blige's "Good Morning Gorgeous" from her album 'Good Morning Gorgeous' - Out Now! Stream 'Good Morning Gorgeous' on all platforms: https://maryjblige.ffm.to/gmgalbum Stream "Amazing (feat. DJ Khaled)" on all platforms: https://maryjblige.ffm.to/amazing Watch the official video: https://youtu.be/CRZig-WX_U8 Follow Mary: https://linktr.ee/therealmaryjblige http://twitter.com/maryjblige http://facebook.com/maryjblige http://instagram.com/therealmaryjblige Director: Eif Rivera Producer: Omar Reynoso DP: Joe Labisi 1st AD: Marc Kelly Art Director: Richard Han Production Company: ERG Designs x Fatking Films Commissioner: Lucas Prevost Styling for MJB: Jason Rembert Hair for MJB: Tym Wallace Make up for MJB: Porsche Cooper LYRICS Ooh Ooh, ooh, ohh, ah Ooh, ooh...
REMASTERED IN HD! Music video by Mary J. Blige performing Everything. YouTube view counts pre-VEVO: 2,252,809. (C) 1997 Geffen Records #MaryJBlige #Everything #Remastered #Vevo
Music video by U2 performing One (C) 2006 Universal-Island Records Limited #MaryJBlige #One #Vevo #RandB #OfficialMusicVideo
The official video for Mary J. Blige's "Amazing" featuring DJ Khaled from her album 'Good Morning Gorgeous' - Out Now! Stream 'Good Morning Gorgeous' on all platforms: https://maryjblige.ffm.to/gmgalbum Stream "Good Morning Gorgeous" on all platforms: https://maryjblige.ffm.to/gmg_ Watch the official video: https://maryjblige.ffm.to/gmg_video Follow Mary: https://linktr.ee/therealmaryjblige http://twitter.com/maryjblige http://facebook.com/maryjblige http://instagram.com/therealmaryjblige Director: Eif Rivera Producers: Omar Reynoso & Bruno Breil Vídeo Commissioner: Lucas Prevost Marketing: Rayna Bass DP: Parris Stewart 1st AD: Ibrahim Ham Yilla Art Direction: Fly Bry Productions Production Company: ERG Designs x Fatking Films LYRICS We the best music (Another one) All hail to the qu...
George Michael & Mary J. Blige - As (Official Video) Stream and download here: https://georgemichael.lnk.to/Streaming Subscribe to the George Michael YouTube channel: https://georgemichael.lnk.to/YouTubeSubscribe WATCH CARELESS WHISPER MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube WATCH FREEDOM! '90 MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube3 WATCH FASTLOVE MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube4 WATCH LAST CHRISTMAS MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube2 WATCH AS MUSIC VIDEO ► https://GeorgeMichael.lnk.to/CompleteCollection/youtube5 Follow George Michael: Tik Tok - https://www.tiktok.com/@georgemichaelofficial Instagram – https://www.instagram.com/georgemofficial/ X - ht...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt A Good Woman Official Trailer #1 (2004) - Helen Hunt Movie HD While retaining her secret identity, the illustrious Mrs. Erlynne (Hunt) saves Lady Windemere (Johansson) from making a grand social faux-pas with the scoundrelly Lord Darlington (Moore).
Richard G Mitchell composed the score for the movie set in the 1930's on the beautiful Italian shores of the Amalfi coast, starring Scarlett Johansson, Helen Hunt & Tom Wilkinson, this is an elegant, witty, romantic comedy based on Oscar Wilde's "Lady Windermere's Fan". Meg (Johansson) meets Darlington (Stephen Campbell Moore) and suggests they should be friends.
Greedy Woman Entices The Husband of a Faithful Young Woman| A Good Woman (2004) Movie Explained #AGoodWomanMovieExplained #Agoodwoman2004 #usa Tags: movie recap,movie recap explained,movie summary,movies under 10 minutes,story recapped,story recapped explained,story recapped channel,story recap,movie recaps,Movie Recap In English,Hollywood Movie Recap,Hollywood Movie Story,Movies Explained In English, ovies Explained, korean movie recap, korean movie explained, a good woman movie explained, a good woman movie in English, english explained, Copyright Use Disclaimer - This video is for Entertainment purposes only. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, , scholarship, and r...
Friend ruined her best friend ➡️ Nigerian movies 2023 #nigerianmovies #nigeriaentertainment #nollywoodmovies #africanmovies
Watch as Flavour highlights the importance of a 'good woman' in his video that showcases the plight of so many African women. The video features a myriad of important Nigerian women and even Flavour's own mother! The video was shot and directed by Dammy Twitch in Lagos, Nigeria. -- Visit http://www.flavourofafrica.com & http://www.2nitemusicgroup.com for all the latest updates on Flavour's music. Subscribe to Flavour’s channel and social media platforms to stay up to date on all the new releases! Facebook - https://www.facebook.com/FlavourNabania Twitter - https://twitter.com/2niteflavour Instagram - https://instagram.com/2niteflavour © 2NITE Music Group
Richard G Mitchell composed the score for the movie set in the 1930's on the beautiful Italian shores of the Amalfi coast, starring Scarlett Johansson, Helen Hunt & Tom Wilkinson, this is an elegant, witty, romantic comedy based on Oscar Wilde's "Lady Windermere's Fan". Mrs Erlynne (Helen Hunt) is being courted by Tuppy (Tom Wilkinson) but gossip has also linked Windermere (Mark Umbers) with her ... so what is she hiding?
О миссис Эрлин в светском обществе ходят разные слухи, из-за которых она была вынуждена переехать из Америки в Италию. На новом месте ухоженная женщина, любящая надевать эффектные платья, тоже моментально стала предметом грез у мужчин и предметом сплетен у женщин. Уж очень ловко ей удается манипулировать сильным полом. Даже молодой мистер Уиндемир стал заходить в гости к загадочной даме и подписывать ей чеки на крупные суммы. Хотя у него есть молоденькая жена, с которой он счастлив в браке. Так кто такая эта миссис Эрлин на самом деле? В ролях: Хелен Хант, Скарлетт Йоханссон, Милена Вукотич #комедия #фильмы #мелодрама
Trailer of Scarlett Johansson :: A Good Woman (2004) - Helen Hunt Movie subscribe PHOTOLAND for trailers. https://www.youtube.com/user/didyouknow1900 http://photolandtv.blogspot.com/
Music video by La'Porsha Renae performing Good Woman. (C) 2016 19 Recordings, Inc. under exclusive license to Motown Records, a division of UMG Recordings, Inc. #LaPorshaRenae #GoodWoman #Vevo
Mary Jane Blige (/ˈblaɪʒ/; born January 11, 1971) is an American singer, songwriter, model, record producer and actress. Starting her career as a background singer on Uptown Records in 1989, Blige released her first album, What's the 411?, in 1992, and has released 11 studio albums since and made over 150 guest appearances on other albums and soundtracks.
A recipient of nine Grammy Awards, in addition to receiving a record of thirty Grammy nominations, Blige is one of few entertainers in history to have eight or more albums to reach multi-platinum status. My Life, in particular, is considered among the greatest albums ever recorded according to Rolling Stone,Time, and Vibe. For her part in combining hip-hop and soul in the early-1990s and its subsequent commercial success, Blige received the Legends Award at the World Music Awards. Blige also received the Voice of Music Award from performance rights organization ASCAP, with its official Jeanie Weems stating that "[Blige's] music has been the voice of inspiration to women worldwide in both struggle and triumph." Blige made Time magazine's "Time 100" list of influential individuals around the world in 2007.
In my life
I've seen
It all
Now it's time
For me
To pass
On this
Knowledge to you
All my sisters
My troubled sisters
This is my
Gift to you
Been many days
Couldn't take
The pain
Felt like
I should take
My life away
See it everyday
In every other
Young sister's face
(Young sister's face)
See'em cryin' out
Life full of doubt
Runnin' in the streets
No self esteem
Thinkin' that
Used to be me
What a shame
And life
Is a mutha
It's hard
To sit back
And see
The same thing
That happened to me
Happen to you
This ain't love
But here's
The love
I wanna give to you
It dosen't
Matter what
They say or do
Don't let'em
Get to you
Don't be afraid
You can, you can
You can breakthrough
Take what
I've been through
To see that
You can't
Hold a good
Woman down
Went through
The same point
Of givin' up
I-I felt
Like I had enough
Went to the edge
Of the ledge
But I didn't jump
"My Life"
Will sum it up
You can't
Hold a good
Woman down
When I used to see
My daddy beat
My mother down
Down to her feet
I used to say
That ain't gon'
Never be me
(Never be me)
Now look at you
Bruised up
From him
Girl recognize
You're better then
Him tellin' you
That he'll never hit
You again
Girl don't cry
Through your changes
I will hold your hand
Use my songs
As remedies
Whenever you're feelin'
Down or blue
I'll be there for you
Trust
And know
That I've been
Where you're at
Seen the things
That you can see
Lookin' at you
Resembles me
But you gotta
Hold your own
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
You can't hold me
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
Can't hold me
Down
You can't hold me
There you have it
I'm still with you
My sisters
My troubled sisters
I still have troubles, too
You're not alone
I'll always be there
For you
Rock on
You can't hold