- published: 03 Feb 2017
- views: 19742187
'+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; })); }); -->
HIDDEN ERROR: Usage of "residence" is not recognized
Albert "Al" Greene (born April 13, 1946), often known as The Reverend Al Green, is an American singer best known for recording a series of soul hit singles in the early 1970s, including "Take Me to the River", "Tired of Being Alone", "I'm Still in Love with You", "Love and Happiness" and his signature song, "Let's Stay Together".Inducted to the Rock and Roll Hall of Fame in 1995, Green was referred to on the museum's site as being "one of the most gifted purveyors of soul music". He has also been referred to as "The Last of the Great Soul Singers". Green was included in the Rolling Stone list of the 100 Greatest Artists of All Time, ranking at No. 66.
Al Green was born Albert Greene on April 13, 1946 in Forrest City, Arkansas. The sixth of ten children born to Cora Lee and Robert G. Greene, Jr., a sharecropper, Al began performing with his brothers in a group called the Greene Brothers around the age of ten. The Greene family relocated to Grand Rapids, Michigan, in the late 1950s. Al was kicked out of the family home in his teens after his religiously devout father caught him listening to Jackie Wilson.
Alfred Dobalo (October 15, 1955 – June 14, 2013), best known by his ring name Al Green, was an American professional wrestler who performed in North America, Europe, and Japan under a variety of gimmicks, including Rage one half of the team The Wrecking Crew with Fury (Marc Laurinaitis), Blade one half of the Master Blasters with Steel (Kevin Nash) and the Dog in World Championship Wrestling at the turn of the millennium.
Green was trained for a professional wrestling career by Steve Keirn, making his debut in 1990 as "Blade", one half of "The Master Blasters" tag team alongside Kevin Nash.
On September 22nd, 1991 Blade was a replacement for "Iron", who left World Championship Wrestling after only one match. The reconstituted Master Blasters continued their undefeated streak in October. Meanwhile Kevin Nash would have his first singles match on September 28, defeating Tom Zenk in Baltimore, MD. At Halloween Havoc on October 27, 1990 in Chicago, IL the Blasters upended The Southern Boys and began to move up the WCW tag-team ratings. However their winning streak would finally come to an end on November 22 at the Omni in Atlanta, GA when Tom Zenk & Brian Pillman handed them their first defeat (Pillman pinning Blade). They rebounded to go on another undefeated streak, defeating The Southern Boys as well as Alan Iron Eagle & Tim Horner and earning a US Tag-Team title shot against the champions The Steiner Brothers. The Steiners however were victorious in matches on December 25 (Atlanta, GA and December 26th (Nashville, TN).
Al Green (born 1955-1956) is a retired American-Australian professional basketball player who played his career in the Australian National Basketball League from 1981 until his retirement in at the end of 1993. Green obtained Australian citizenship in 1984.
Born and bred in the South Bronx in what he calls "the real ghetto", Al Green and grew up playing basketball with future NBA All-Star player Bernard King. He attended Maine Central HS following which he attended Arizona Western Junior College. He then switched schools and went to North Carolina State University where he was a member of the NC State Wolfpack before again moving one last time to Louisiana State University to play for the LSU Tigers. During his college career for NC State and LSU Green would come up against the likes of future NBA Hall of Fame player Magic Johnson.
Green entered into the 1979 NBA Draft where he was a third round selection (64th overall) by the Phoenix Suns, though he would never play in the NBA. In the draft, Green was selected before future NBA All Star center's - 6'11" (211 cm) Bill Laimbeer (65th - Cleveland Cavaliers), 7'2" (218 cm) James Donaldson (73rd - Seattle SuperSonics), and 7'4" (224 cm) Mark Eaton (107th - Phoenix).
Al Green (born September 1, 1947) is the U.S. Representative from Texas' 9th congressional district, serving since 2005. The district includes most of southwestern Houston, including most of that city's share of Fort Bend County. It also includes most of Missouri City.
Green was born in New Orleans, Louisiana. He attended Florida A&M University and transferred to Tuskegee University. He later went on to receive his Juris Doctor in 1974 from the Thurgood Marshall School of Law at Texas Southern University. After receiving his law degree and being admitted to the Texas Bar, he remained in Houston and currently lives in the Alief community.
In 1978, Green was elected Justice of the Peace in Harris County, Texas, in the Precinct 7, Place Two position. He held this position for 26 years.
A former trial lawyer, Green co-founded the firm of Green, Wilson, Dewberry, and Fitch. He also served as president of the Houston NAACP and, during his term as the organization's leader, membership increased sevenfold. While serving as NAACP leader, he focused on increasing minority hiring in Texas and forming alliances with Hispanic groups.
Al Green (Albert Greene, born 1946) is an American musician.
Al Green or Greene may also refer to:
Official full stream of Al Green's Greatest Hits (1975) #AlGreen #GreatestHits #Music Download: http://flyt.it/GreatestHitsLP Spotify: http://flyt.it/GreatestHitsSpotify Apple Music: http://flyt.it/GreatestHitsApple iTunes: http://flyt.it/GreatestHitsiTunes Amazon: http://flyt.it/GreatestHitsAmazon Subscribe: http://bit.ly/2j8ulPs 1) Tired Of Being Alone 0:00:00 2) Call Me 0:02:43 3) I'm Still In Love With You 0:05:47 4) Here I Am 0:09:02 5) Love And Happiness 0:13:17 6) Let's Stay Together 0:18:21 7) I Can't Get Next To You 0:21:40 8) You Ought To Be With Me 0:25:34 9) Look What You Done For Me 0:28:54 10) Let's Get Married 0:32:00 Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.c...
Official audio for "Let's Stay Together" by Al Green #AlGreen #Music #Soul Download: http://flyt.it/LetsStayTogetherLP Spotify: http://flyt.it/LetsStayTogetherSpotify Apple Music: http://flyt.it/LetsStayTogetherApple iTunes: http://flyt.it/LetsStayTogetheriTunes Amazon: http://flyt.it/LetsStayTogetherAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com
Al Green - Love and Happiness Lyrics: Love and happiness, yeah Something that can make you do wrong, make you do right Love Love and happiness But wait a minute Something's going wrong Someone's on the phone Three o'clock in the morning Talkin' about how she can make it right, yeah Well, happiness is when, you really feel good with somebody But nothing wrong with being in love with someone, yeah Oh, baby, love and happiness Love and happiness Love and happiness (love and happiness) oh I have to say Love and happiness (love and happiness) Love and happiness (love and happiness) You be good to me I'll be good to you We'll be together, yeah We'll see each other Walk away with victory, yeah oh baby Love and happiness (love and happiness) Love and happiness (love and happiness) Hey, hey, hey,...
Al Green's "How Can You Mend a Broken Heart" official audio from the album Let's Stay Together. https://algreen.ffm.to/letsstaytogether Al Green’s Greatest Hits available now: Fat Possum Store: http://smarturl.it/zh90b6 iTunes: http://smarturl.it/llnzhg Follow Al Green: http://www.facebook.com/algreen Follow Fat Possum: http://fatpossum.com http://facebook.com/fatpossumrecords http://twitter.com/fatpossum http://instagram.com/fatpossum http://www.youtube.com/elpossum Released by Hi Records / Fat Possum Produced by Willie Mitchell © Fat Possum Records _____ https://www.fatpossum.com/ Follow Fat Possum on... YouTube: https://www.youtube.com/channel/elpossum Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/F...
Official audio for "For the Good Times" by Al Green, from the album I'm Still In Love With You (1972) Download: http://flyt.it/StillInLoveWithYouLP Stream on Spotify: http://flyt.it/StillInLoveWithYouSpotify Stream on Apple Music: http://flyt.it/StillInLoveWithYouApple Download on iTunes: http://flyt.it/StillInLoveWithYouiTunes Download on Amazon: http://flyt.it/StillInLoveWithYouAmazon Subscribe: http://bit.ly/2j8ulPs Facebook: http://facebook.com/algreen Twitter: http://twitter.com/algreen Instagram: http://instagram.com/algreen http://fatpossum.com http://hirecords.com
Al Green performs "Let's Stay Together" http://vevo.ly/1zfRQu
Al Green - I'm So Tired of Being Alone Lyrics: I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Just as soon as you can. People say that I've found a way, To make you say, That you love me. But baby, You didn't go for that, Ha, it's a natural fact, That I want to come back, Show me where it's at, baby. I'm so tired of being alone, I'm so tired of on my own, Won't you help me, girl, Soon as you can. I guess you know that I, uh, I love you so, Even though, You don't want me no more, Hey, hey, hey, hey I'm cryin' tears, Through the years, I tell you like it is, Honey, love me if you can. Ya baby, Tired of being alone here by myself, now I tell ya, I'm tired baby, I'm tired of being all wrapped up late at night, In my dreams, nobody but you, baby. Sometimes I w...
Provided to YouTube by The Orchard Enterprises Here I Am (Come and Take Me) · Al Green · Not Documented Greatest Hits ℗ 2009 Hi Records Under Exclusive License to Fat Possum Records Released on: 1975-05-29 Auto-generated by YouTube.
Music video by Al Green performing Everything's Gonna Be Alright. (C) 1987 A&M Records
HIDDEN ERROR: Usage of "residence" is not recognized
Albert "Al" Greene (born April 13, 1946), often known as The Reverend Al Green, is an American singer best known for recording a series of soul hit singles in the early 1970s, including "Take Me to the River", "Tired of Being Alone", "I'm Still in Love with You", "Love and Happiness" and his signature song, "Let's Stay Together".Inducted to the Rock and Roll Hall of Fame in 1995, Green was referred to on the museum's site as being "one of the most gifted purveyors of soul music". He has also been referred to as "The Last of the Great Soul Singers". Green was included in the Rolling Stone list of the 100 Greatest Artists of All Time, ranking at No. 66.
Al Green was born Albert Greene on April 13, 1946 in Forrest City, Arkansas. The sixth of ten children born to Cora Lee and Robert G. Greene, Jr., a sharecropper, Al began performing with his brothers in a group called the Greene Brothers around the age of ten. The Greene family relocated to Grand Rapids, Michigan, in the late 1950s. Al was kicked out of the family home in his teens after his religiously devout father caught him listening to Jackie Wilson.