'+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; })); }); -->

Powell (surname)

Powell is a traditional Welsh surname. It is sometimes said to mean "Son of the Servant of St. Paul", but is more likely to be a patronymic from the Welsh first name Howel. The Old Celtic term "ap" means "son of", hence ap Howel was eventually spelled as Powell. At the time of the British Census of 1881, the frequency of the surname Powell was highest in Brecknockshire (21.9 times the British average), followed by Radnorshire, Herefordshire, Monmouthshire, Shropshire, Glamorgan, Flintshire, Denbighshire, Gloucestershire and Worcestershire.

Deceased

  • Adam Clayton Powell, Sr. (1865 1953), prominent minister of the Abyssinian Baptist Church in Harlem, New York
  • Adam Clayton Powell, Jr. (1908 1972), minister and politician, first African American to become a powerful figure in the United States Congress
  • Alfred Hoare Powell (1865 1960) English Arts and Crafts architect, pottery decorator and artist
  • Anthony Powell (1905 2000), English novelist
  • Arthur William Baden Powell (1901 1987), New Zealand malacologist and paleontologist
  • Powell

    Powell may refer to:

    Companies

  • Powell's Books, self-titled 'largest independent seller of new and used books in the world'
  • Powell Manufacturing Company, defunct American motor vehicle company
  • Powell Peralta, skateboard company, that changed its name to Powell Skateboards
  • Places

  • Powell Island, South Orkney Islands
  • Powell, Alabama, town in DeKalb County
  • Powell, Missouri, unincorporated community in McDonald County
  • Powell, Nebraska, an unincorporated community
  • Powell, Ohio, city in Delaware County
  • Powell, Edmunds County, South Dakota, an unincorporated community
  • Powell, Haakon County, South Dakota, a ghost town
  • Powell, Tennessee, unincorporated community in Knox County
  • Powell, Texas, town in Navarro County
  • Powell, Wisconsin, an unincorporated community
  • Powell, Wyoming, city in Park County
  • Powell Hall, home of the Saint Louis Symphony Orchestra in St. Louis, Missouri
  • Powell Observatory of Louisburg, Kansas
  • Powell Gardens of Kansas City, Missouri
  • Lake Powell, man-made reservoir on the Colorado River
  • Powell (crater)

    Powell is a feature on Earth's Moon, a crater in Taurus-Littrow valley. Astronauts Eugene Cernan and Harrison Schmitt landed less than 1 km northeast of it in 1972, on the Apollo 17 mission, but they did not visit it.

    To the north of Powell is Trident and the landing site. To the northwest are Camelot and Horatio, and to the northeast is Sherlock. Steno and Emory are to the southeast.

    The crater was named by the astronauts after John Wesley Powell, geologist and explorer of the American West.

    References

    External links

  • Geological Investigation of the Taurus-Littrow Valley: Apollo 17 Landing Site
  • Powell Street Station

    Powell Street is a shared Muni Metro and Bay Area Rapid Transit station near the intersection of Market Street and Powell Street in downtown San Francisco. The station is located along the Market Street Subway and extends underground from Fourth Street to Fifth Street. Hallidie Plaza connects to the station on the north side of Market Street. Like all of the shared BART and Muni stations on the Market Street Subway, the concourse mezzanine is on the first level down, an island platform for the Muni Metro is on the second level down, and the island platform for BART is on the third level down.

    The Powell-Mason and Powell-Hyde cable car lines turn around at Powell and Market, above the station. Union Square is three blocks north of the station, the Westfield San Francisco Centre is on Market at Powell and the old United States Mint building is located one block away at Fifth Street and Mission Street. Also nearby is the famous Yerba Buena Gardens and Moscone Center, each about a block away, near Mission Street on 4th. Within the area is the The Metreon shopping center and movie theater. More tourist information is available at the San Francisco Visitor's Bureau located in Hallidie Plaza.

    Podcasts:

    • Powell: 'I'm not concerned' that there's risk Fed would lose statutory independence

      Federal Reserve Chair Jerome Powell joins CNBC's Andrew Ross Sorkin at the DealBook Summit.

      published: 04 Dec 2024
    • Fed's Powell Says He Won't Resign, Not Required to Leave

      Federal Reserve Chair Jerome Powell says he will not resign if President-elect Donald Trump asks him to resign. He speaks at a news conference following the decision by the Fed’s policy-setting Federal Open Market Committee unanimously lowered the federal funds rate to a range of 4.5% to 4.75%. Sign up for the Economics Daily newsletter to discover what's driving the global economy and what it means for policy makers, businesses, investors and you: https://bloom.bg/4535pfS -------- More on Bloomberg Television and Markets Like this video? Subscribe and turn on notifications so you don't miss any videos from Bloomberg Markets & Finance: https://tinyurl.com/ysu5b8a9 Visit http://www.bloomberg.com for business news & analysis, up-to-the-minute market data, features, profiles and more....

      published: 07 Nov 2024
    • NYT DealBook Summit | 2024 - Jerome Powell

      published: 04 Dec 2024
    • Fed Chair Powell on the economy, Trump and inflation

      CNBC's Steve Liesman joins 'Power Lunch' to report on his takeaways from Fed Chair Powell's latest remarks at the DealBook Summit.

      published: 04 Dec 2024
    • The Economic Tightrope:Jerome Powell on the Fed’s Role in America’s Financial Future

      Jerome Powell sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit to discuss the Federal Reserve’s strategies for shaping America’s financial future amid economic uncertainty, the importance of Fed independence, and what he expects from a second Trump administration. Interviewer: Andrew Ross Sorkin, the founder and editor at large of DealBook Guest: Jerome Powell, the chair of the Board of Governors of the Federal Reserve System

      published: 04 Dec 2024
    • Susan Powell disappeared 15 years ago this week. ‘Cold’ is releasing new episodes on the case.

      #eastidahonews #susanpowell #truecrime WEST VALLEY CITY, Utah -- It's been 15 years since Susan Powell disappeared from her home in West Valley City, Utah. The Utah mom vanished on Dec. 7, 2009, the same day her husband, Josh, took their two sons, ages 2 and 4, on a camping trip during a blizzard in the middle of the night. Susan’s body has never been found, and police believe Josh likely murdered his wife, but he was never arrested or charged. More than two years later, Josh killed himself and the boys, Charlie and Braden, by attacking them with a hatchet and setting his Washington rental home on fire. Dave Cawley, a journalist with KSL Podcasts, spent years researching Susan's disappearance. He spent thousands of hours pouring over investigative documents, recordings and police repo...

      published: 06 Dec 2024
    • Federal Reserve Chair Powell speaks after Fed lowers interest rates by half point — 9/18/2024

      Federal Reserve Chairman Jerome Powell delivers remarks following the Federal Reserve's two-day policy meeting on Wednesday. Central bank policymakers trimmed interest rates by 50 basis points, marking its first cut in four years. The move brings the target fed funds rate to a range of 4.75% to 5.00%. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/42d859g » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follo...

      published: 18 Sep 2024
    • Fed Chair Powell on whether the president has the power to fire him: 'Not permitted under the law'

      Federal Reserve Chair Jerome Powell fields questions from reporters after the Central Bank announced its second consecutive interest rate cut on Thursday.

      published: 07 Nov 2024
    • The Only Person That Shakes the Markets - Jerome Powell

      Join this channel to get access to perks: https://www.youtube.com/channel/UCqQs28K2zj2dOsc5NfXUKEg/join Check out www.benzinga.com for complete coverage along with all the latest financial news and data! Follow us on socials: 📸Instagram: www.instagram.com/benzinga 👍Facebook: www.facebook.com/Benzinga 📱TikTok: www.tiktok.com/@benzinga 🐤X: twitter.com/Benzinga Disclaimer: All of the information, material, and/or content contained in this program is for informational purposes only. Investing in stocks, options, and futures is risky and not suitable for all investors. Please consult your own independent financial adviser before making any investment decisions. #StockMarket #Stocks #jeromepowell #bitcoin #news

      published: 18 Mar 2024
    • Jesse Powell - You (Official Music Video) ft. Gerald Albright

      REMASTERED IN HD! Official Music Video for You performed by Jesse Powell ft. Gerald Albright. #JessePowell #You #GeraldAlbright #Remastered

      published: 11 Nov 2022
    Powell: 'I'm not concerned' that there's risk Fed would lose statutory independence
    2:05

    Powell: 'I'm not concerned' that there's risk Fed would lose statutory independence

    • Order:
    • Duration: 2:05
    • Uploaded Date: 04 Dec 2024
    • views: 9381
    Federal Reserve Chair Jerome Powell joins CNBC's Andrew Ross Sorkin at the DealBook Summit.
    https://wn.com/Powell_'I'm_Not_Concerned'_That_There's_Risk_Fed_Would_Lose_Statutory_Independence
    Fed's Powell Says He Won't Resign, Not Required to Leave
    0:30

    Fed's Powell Says He Won't Resign, Not Required to Leave

    • Order:
    • Duration: 0:30
    • Uploaded Date: 07 Nov 2024
    • views: 10477
    Federal Reserve Chair Jerome Powell says he will not resign if President-elect Donald Trump asks him to resign. He speaks at a news conference following the decision by the Fed’s policy-setting Federal Open Market Committee unanimously lowered the federal funds rate to a range of 4.5% to 4.75%. Sign up for the Economics Daily newsletter to discover what's driving the global economy and what it means for policy makers, businesses, investors and you: https://bloom.bg/4535pfS -------- More on Bloomberg Television and Markets Like this video? Subscribe and turn on notifications so you don't miss any videos from Bloomberg Markets & Finance: https://tinyurl.com/ysu5b8a9 Visit http://www.bloomberg.com for business news & analysis, up-to-the-minute market data, features, profiles and more. Connect with Bloomberg Television on: X: https://twitter.com/BloombergTV Facebook: https://www.facebook.com/BloombergTelevision Instagram: https://www.instagram.com/bloombergtv/ Connect with Bloomberg Business on: X: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/ TikTok: https://www.tiktok.com/@bloombergbusiness?lang=en Reddit: https://www.reddit.com/r/bloomberg/ LinkedIn: https://www.linkedin.com/company/bloomberg-news/ More from Bloomberg: Bloomberg Radio: https://twitter.com/BloombergRadio Bloomberg Surveillance: https://twitter.com/bsurveillance Bloomberg Politics: https://twitter.com/bpolitics Bloomberg Originals: https://twitter.com/bbgoriginals Watch more on YouTube: Bloomberg Technology: https://www.youtube.com/@BloombergTechnology Bloomberg Originals: https://www.youtube.com/@business Bloomberg Quicktake: https://www.youtube.com/@BloombergQuicktake Bloomberg Espanol: https://www.youtube.com/@bloomberg_espanol Bloomberg Podcasts: https://www.youtube.com/@BloombergPodcasts
    https://wn.com/Fed's_Powell_Says_He_Won't_Resign,_Not_Required_To_Leave
    NYT DealBook Summit | 2024 - Jerome Powell
    34:23

    NYT DealBook Summit | 2024 - Jerome Powell

    • Order:
    • Duration: 34:23
    • Uploaded Date: 04 Dec 2024
    • views: 16335
    https://wn.com/Nyt_Dealbook_Summit_|_2024_Jerome_Powell
    Fed Chair Powell on the economy, Trump and inflation
    5:27

    Fed Chair Powell on the economy, Trump and inflation

    • Order:
    • Duration: 5:27
    • Uploaded Date: 04 Dec 2024
    • views: 14048
    CNBC's Steve Liesman joins 'Power Lunch' to report on his takeaways from Fed Chair Powell's latest remarks at the DealBook Summit.
    https://wn.com/Fed_Chair_Powell_On_The_Economy,_Trump_And_Inflation
    The Economic Tightrope:Jerome Powell on the Fed’s Role in America’s Financial Future
    35:52

    The Economic Tightrope:Jerome Powell on the Fed’s Role in America’s Financial Future

    • Order:
    • Duration: 35:52
    • Uploaded Date: 04 Dec 2024
    • views: 33548
    Jerome Powell sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit to discuss the Federal Reserve’s strategies for shaping America’s financial future amid economic uncertainty, the importance of Fed independence, and what he expects from a second Trump administration. Interviewer: Andrew Ross Sorkin, the founder and editor at large of DealBook Guest: Jerome Powell, the chair of the Board of Governors of the Federal Reserve System
    https://wn.com/The_Economic_Tightrope_Jerome_Powell_On_The_Fed’S_Role_In_America’S_Financial_Future
    Susan Powell disappeared 15 years ago this week. ‘Cold’ is releasing new episodes on the case.
    18:22

    Susan Powell disappeared 15 years ago this week. ‘Cold’ is releasing new episodes on the case.

    • Order:
    • Duration: 18:22
    • Uploaded Date: 06 Dec 2024
    • views: 11254
    #eastidahonews #susanpowell #truecrime WEST VALLEY CITY, Utah -- It's been 15 years since Susan Powell disappeared from her home in West Valley City, Utah. The Utah mom vanished on Dec. 7, 2009, the same day her husband, Josh, took their two sons, ages 2 and 4, on a camping trip during a blizzard in the middle of the night. Susan’s body has never been found, and police believe Josh likely murdered his wife, but he was never arrested or charged. More than two years later, Josh killed himself and the boys, Charlie and Braden, by attacking them with a hatchet and setting his Washington rental home on fire. Dave Cawley, a journalist with KSL Podcasts, spent years researching Susan's disappearance. He spent thousands of hours pouring over investigative documents, recordings and police reports. He also met with family members, friends, detectives and others close to the case. KSL Podcasts released "Cold Season 1: The Susan Powell Case Files in 2018" and the series remained at the top of the Apple podcast charts for weeks. Two bonus episodes have been released this week focusing on different aspects of the case. The first is called "Mystery Metal" and is about a metal object found in Powell's van after Susan disappeared. "Beaches and Airplanes" is the title of the second bonus show. It revolves around a forensic interview 4-year-old Charlie did with police the day after Susan disappeared. EastIdahoNews.com reporter Nate Eaton spoke with Cawley about the case and where it stands today. Watch our entire conversation in the video player above. Learn more about "Cold" and listen to the new episodes here. ► Support East Idaho News: https://www.eastidahonews.com/donate/ ► Subscribe to East Idaho News: https://www.youtube.com/c/Eastidahonews?sub_confirmation=1 ► Get East Idaho News merch: https://www.eastidahonews.com/shop/ ► Download our free app: http://marketplace-redirect.doapps.com/3236 ► Like us on Facebook: https://www.facebook.com/EastIdahoNews ► Follow us on X: https://twitter.com/EastIDNews ► Follow us on Instagram: https://www.instagram.com/eastidahonews/ ► Subscribe to our free newsletter: https://www.eastidahonews.com/newsletter/
    https://wn.com/Susan_Powell_Disappeared_15_Years_Ago_This_Week._‘Cold’_Is_Releasing_New_Episodes_On_The_Case.
    Federal Reserve Chair Powell speaks after Fed lowers interest rates by half point — 9/18/2024
    51:10

    Federal Reserve Chair Powell speaks after Fed lowers interest rates by half point — 9/18/2024

    • Order:
    • Duration: 51:10
    • Uploaded Date: 18 Sep 2024
    • views: 345226
    Federal Reserve Chairman Jerome Powell delivers remarks following the Federal Reserve's two-day policy meeting on Wednesday. Central bank policymakers trimmed interest rates by 50 basis points, marking its first cut in four years. The move brings the target fed funds rate to a range of 4.75% to 5.00%. For access to live and exclusive video from CNBC subscribe to CNBC PRO: https://cnb.cx/42d859g » Subscribe to CNBC TV: https://cnb.cx/SubscribeCNBCtelevision » Subscribe to CNBC: https://cnb.cx/SubscribeCNBC Turn to CNBC TV for the latest stock market news and analysis. From market futures to live price updates CNBC is the leader in business news worldwide. Connect with CNBC News Online Get the latest news: http://www.cnbc.com/ Follow CNBC on LinkedIn: https://cnb.cx/LinkedInCNBC Follow CNBC News on Instagram: https://cnb.cx/InstagramCNBC Follow CNBC News on Facebook: https://cnb.cx/LikeCNBC Follow CNBC on Threads: https://cnb.cx/threads Follow CNBC News on X: https://cnb.cx/FollowCNBC Follow CNBC on WhatsApp: https://cnb.cx/WhatsAppCNBC https://www.cnbc.com/select/best-credit-cards/ #CNBC #CNBCTV Federal Reserve Chair Powell speaks after Fed lowers interest rates by half point — 9/18/2024
    https://wn.com/Federal_Reserve_Chair_Powell_Speaks_After_Fed_Lowers_Interest_Rates_By_Half_Point_—_9_18_2024
    Fed Chair Powell on whether the president has the power to fire him: 'Not permitted under the law'
    1:43

    Fed Chair Powell on whether the president has the power to fire him: 'Not permitted under the law'

    • Order:
    • Duration: 1:43
    • Uploaded Date: 07 Nov 2024
    • views: 20774
    Federal Reserve Chair Jerome Powell fields questions from reporters after the Central Bank announced its second consecutive interest rate cut on Thursday.
    https://wn.com/Fed_Chair_Powell_On_Whether_The_President_Has_The_Power_To_Fire_Him_'Not_Permitted_Under_The_Law'
    The Only Person That Shakes the Markets - Jerome Powell
    0:18

    The Only Person That Shakes the Markets - Jerome Powell

    • Order:
    • Duration: 0:18
    • Uploaded Date: 18 Mar 2024
    • views: 66672
    Join this channel to get access to perks: https://www.youtube.com/channel/UCqQs28K2zj2dOsc5NfXUKEg/join Check out www.benzinga.com for complete coverage along with all the latest financial news and data! Follow us on socials: 📸Instagram: www.instagram.com/benzinga 👍Facebook: www.facebook.com/Benzinga 📱TikTok: www.tiktok.com/@benzinga 🐤X: twitter.com/Benzinga Disclaimer: All of the information, material, and/or content contained in this program is for informational purposes only. Investing in stocks, options, and futures is risky and not suitable for all investors. Please consult your own independent financial adviser before making any investment decisions. #StockMarket #Stocks #jeromepowell #bitcoin #news
    https://wn.com/The_Only_Person_That_Shakes_The_Markets_Jerome_Powell
    Jesse Powell - You (Official Music Video) ft. Gerald Albright
    3:56

    Jesse Powell - You (Official Music Video) ft. Gerald Albright

    • Order:
    • Duration: 3:56
    • Uploaded Date: 11 Nov 2022
    • views: 24063707
    REMASTERED IN HD! Official Music Video for You performed by Jesse Powell ft. Gerald Albright. #JessePowell #You #GeraldAlbright #Remastered
    https://wn.com/Jesse_Powell_You_(Official_Music_Video)_Ft._Gerald_Albright
    • Dr. Michael Powell, Crater Chiropractic Clinic

      Dr. Michael Powell, Crater Chiropractic Clinic

      published: 02 Nov 2019
    • Mysterious creature spotted in depths of Lake Tahoe

      KCRA 3 explores the myths and reality of what’s at the bottom of Lake Tahoe. Subscribe to KCRA on YouTube now for more: http://bit.ly/1kjRAAn Get more Sacramento news: http://www.kcra.com Like us: http://facebook.com/KCRA3 Follow us: http://twitter.com/kcranews Instagram: https://www.instagram.com/kcranews/

      published: 31 Aug 2016
    • Grand Canyon, Lake Powell, Monument Valley, and Meteor Crater Tour

      published: 03 Feb 2018
    • How Arizona's Lake Powell came to be

      (ARIZONA HIGHWAYS TV) - Lake Powell is the second largest man-made lake in the United States and has a rich history.

      published: 21 May 2019
    • Woman Who Used Adult Toy on Beach Found Dead in Apartment

      Police bodycam video shows police approaching Christina Revels-Glick, who was accused of using an adult toy on a Georgia beach. After her arrest, she was said to have gone on a downward spiral and ended her life nine months later. According to the coroner's report, the cause of death was a "gunshot wound to the head” and the manner of death was certified as suicide. Inside Edition’s Les Trent spoke to her neighbor.

      published: 17 Dec 2023
    • Big Drop on the Trail "Crater" (In Powell River.)

      published: 15 Jun 2022
    • Pre-Flood Mega Quarry Discovered in Utah

      Watch the full video from the POV Channel here: https://www.youtube.com/watch?v=Lngf0N8OrN0 Join us in fueling our mission to create insightful videos backed by thorough research by supporting us on Patreon or PayPal: https://patreon.com/universeinsideyou https://paypal.com/donate/?hosted_button_id=XSCP6D3HSBWEL Your support can help us dive even deeper into topics that matter, enabling us to produce engaging content that informs and inspires. By contributing, you're not just backing a project – you're empowering a wealth of knowledge to be shared. Stand with us as we strive to bring meaningful videos to life. Every contribution counts. Discover a world of creativity at our art and merchandise shop: https://teespring.com/stores/universe-inside-you-2 Join us on: Instagram: https://www....

      published: 26 Mar 2024
    • Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man

      Billy Newman and Marina Hansen discuss two photographs. Photographing popular areas in the southwest along the Utah / Arizona border near lake powell The mirrored shape of a tiki man is hidden in the rock walls of crater lake national park in Oregon. Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man

      published: 28 Apr 2017
    • Shocking CCTV Hidden Security Camera Video Footage Captures The Unimaginable And It Ends In Tragedy!

      Unfortunate? Or Karma? Get all Kevin E Lake novels and short story collections in print or Kindle at: https://amzn.to/3h2pVIr Get all of our homemade items in our Etsy store “Homesteading Haven” at this link: https://www.etsy.com/shop/HomesteadingHaven?ref=l2-about-shopname Check out my wife Dearly’s channel @lifewithdearly8102 Show some love to Jenny Jo @astaroth271

      published: 06 Mar 2021
    • Opening a dam gate after years of it being closed #amazing

      ​@LifeWithEvan come say hi! patchtolife.com is my company. I created a hangover cure that I sell nationwide. Now I have three more products ready for pre order. Sleep, Energy, and Stress Patches. These will be supplied to local sober living homes with every purchase! Thanks so much for the support and helping my small business grow

      published: 05 Jan 2022
    Dr. Michael Powell, Crater Chiropractic Clinic
    2:27

    Dr. Michael Powell, Crater Chiropractic Clinic

    • Order:
    • Duration: 2:27
    • Uploaded Date: 02 Nov 2019
    • views: 95
    Dr. Michael Powell, Crater Chiropractic Clinic
    https://wn.com/Dr._Michael_Powell,_Crater_Chiropractic_Clinic
    Mysterious creature spotted in depths of Lake Tahoe
    3:46

    Mysterious creature spotted in depths of Lake Tahoe

    • Order:
    • Duration: 3:46
    • Uploaded Date: 31 Aug 2016
    • views: 4597602
    KCRA 3 explores the myths and reality of what’s at the bottom of Lake Tahoe. Subscribe to KCRA on YouTube now for more: http://bit.ly/1kjRAAn Get more Sacramento news: http://www.kcra.com Like us: http://facebook.com/KCRA3 Follow us: http://twitter.com/kcranews Instagram: https://www.instagram.com/kcranews/
    https://wn.com/Mysterious_Creature_Spotted_In_Depths_Of_Lake_Tahoe
    Grand Canyon, Lake Powell, Monument Valley, and Meteor Crater Tour
    12:21

    Grand Canyon, Lake Powell, Monument Valley, and Meteor Crater Tour

    • Order:
    • Duration: 12:21
    • Uploaded Date: 03 Feb 2018
    • views: 65
    https://wn.com/Grand_Canyon,_Lake_Powell,_Monument_Valley,_And_Meteor_Crater_Tour
    How Arizona's Lake Powell came to be
    3:59

    How Arizona's Lake Powell came to be

    • Order:
    • Duration: 3:59
    • Uploaded Date: 21 May 2019
    • views: 9690
    (ARIZONA HIGHWAYS TV) - Lake Powell is the second largest man-made lake in the United States and has a rich history.
    https://wn.com/How_Arizona's_Lake_Powell_Came_To_Be
    Woman Who Used Adult Toy on Beach Found Dead in Apartment
    1:35

    Woman Who Used Adult Toy on Beach Found Dead in Apartment

    • Order:
    • Duration: 1:35
    • Uploaded Date: 17 Dec 2023
    • views: 9810868
    Police bodycam video shows police approaching Christina Revels-Glick, who was accused of using an adult toy on a Georgia beach. After her arrest, she was said to have gone on a downward spiral and ended her life nine months later. According to the coroner's report, the cause of death was a "gunshot wound to the head” and the manner of death was certified as suicide. Inside Edition’s Les Trent spoke to her neighbor.
    https://wn.com/Woman_Who_Used_Adult_Toy_On_Beach_Found_Dead_In_Apartment
    Big Drop on the Trail "Crater" (In Powell River.)
    0:27

    Big Drop on the Trail "Crater" (In Powell River.)

    • Order:
    • Duration: 0:27
    • Uploaded Date: 15 Jun 2022
    • views: 78
    https://wn.com/Big_Drop_On_The_Trail_Crater_(In_Powell_River.)
    Pre-Flood Mega Quarry Discovered in Utah
    12:03

    Pre-Flood Mega Quarry Discovered in Utah

    • Order:
    • Duration: 12:03
    • Uploaded Date: 26 Mar 2024
    • views: 1202470
    Watch the full video from the POV Channel here: https://www.youtube.com/watch?v=Lngf0N8OrN0 Join us in fueling our mission to create insightful videos backed by thorough research by supporting us on Patreon or PayPal: https://patreon.com/universeinsideyou https://paypal.com/donate/?hosted_button_id=XSCP6D3HSBWEL Your support can help us dive even deeper into topics that matter, enabling us to produce engaging content that informs and inspires. By contributing, you're not just backing a project – you're empowering a wealth of knowledge to be shared. Stand with us as we strive to bring meaningful videos to life. Every contribution counts. Discover a world of creativity at our art and merchandise shop: https://teespring.com/stores/universe-inside-you-2 Join us on: Instagram: https://www.instagram.com/universe.inside.you Facebook: https://www.facebook.com/universalloving For Spanish-narrated videos, visit our Spanish channel: https://www.youtube.com/channel/UCrj10lembQkoijcXv6Bn55g/ #universeinsideyou
    https://wn.com/Pre_Flood_Mega_Quarry_Discovered_In_Utah
    Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man
    16:45

    Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man

    • Order:
    • Duration: 16:45
    • Uploaded Date: 28 Apr 2017
    • views: 7
    Billy Newman and Marina Hansen discuss two photographs. Photographing popular areas in the southwest along the Utah / Arizona border near lake powell The mirrored shape of a tiki man is hidden in the rock walls of crater lake national park in Oregon. Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man
    https://wn.com/Billy_Newman_Photo_Podcast_|_84_Powell_Lake_Arizona_And_The_Crater_Lake_Tiki_Man
    Shocking CCTV Hidden Security Camera Video Footage Captures The Unimaginable And It Ends In Tragedy!
    16:37

    Shocking CCTV Hidden Security Camera Video Footage Captures The Unimaginable And It Ends In Tragedy!

    • Order:
    • Duration: 16:37
    • Uploaded Date: 06 Mar 2021
    • views: 6511412
    Unfortunate? Or Karma? Get all Kevin E Lake novels and short story collections in print or Kindle at: https://amzn.to/3h2pVIr Get all of our homemade items in our Etsy store “Homesteading Haven” at this link: https://www.etsy.com/shop/HomesteadingHaven?ref=l2-about-shopname Check out my wife Dearly’s channel @lifewithdearly8102 Show some love to Jenny Jo @astaroth271
    https://wn.com/Shocking_Cctv_Hidden_Security_Camera_Video_Footage_Captures_The_Unimaginable_And_It_Ends_In_Tragedy
    Opening a dam gate after years of it being closed #amazing
    0:53

    Opening a dam gate after years of it being closed #amazing

    • Order:
    • Duration: 0:53
    • Uploaded Date: 05 Jan 2022
    • views: 158607184
    ​@LifeWithEvan come say hi! patchtolife.com is my company. I created a hangover cure that I sell nationwide. Now I have three more products ready for pre order. Sleep, Energy, and Stress Patches. These will be supplied to local sober living homes with every purchase! Thanks so much for the support and helping my small business grow
    https://wn.com/Opening_A_Dam_Gate_After_Years_Of_It_Being_Closed_Amazing
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 2:33:46

    Powell: 'I'm not concerned' that there's risk Fed would lose statutory independence

    Federal Reserve Chair Jerome Powell joins CNBC's Andrew Ross Sorkin at the DealBook Summit.
    2:05
    Powell: 'I'm not concerned' that there's risk Fed would lose statutory independence
    Federal Reserve Chair Jerome Powell joins CNBC's Andrew Ross Sorkin at the DealBook Summit...
    published: 04 Dec 2024
    Play in Full Screen
    0:30
    Fed's Powell Says He Won't Resign, Not Required to Leave
    Federal Reserve Chair Jerome Powell says he will not resign if President-elect Donald Trum...
    published: 07 Nov 2024
    Play in Full Screen
    34:23
    NYT DealBook Summit | 2024 - Jerome Powell
    published: 04 Dec 2024
    Play in Full Screen
    5:27
    Fed Chair Powell on the economy, Trump and inflation
    CNBC's Steve Liesman joins 'Power Lunch' to report on his takeaways from Fed Chair Powell'...
    published: 04 Dec 2024
    Play in Full Screen
    35:52
    The Economic Tightrope:Jerome Powell on the Fed’s Role in America’s Financial Future
    Jerome Powell sits down with Andrew Ross Sorkin at the 2024 New York Times DealBook Summit...
    published: 04 Dec 2024
    Play in Full Screen
    18:22
    Susan Powell disappeared 15 years ago this week. ‘Cold’ is releasing new episodes on the case.
    #eastidahonews #susanpowell #truecrime WEST VALLEY CITY, Utah -- It's been 15 years sinc...
    published: 06 Dec 2024
    Play in Full Screen
    51:10
    Federal Reserve Chair Powell speaks after Fed lowers interest rates by half point — 9/18/2024
    Federal Reserve Chairman Jerome Powell delivers remarks following the Federal Reserve's tw...
    published: 18 Sep 2024
    Play in Full Screen
    1:43
    Fed Chair Powell on whether the president has the power to fire him: 'Not permitted under the law'
    Federal Reserve Chair Jerome Powell fields questions from reporters after the Central Bank...
    published: 07 Nov 2024
    Play in Full Screen
    0:18
    The Only Person That Shakes the Markets - Jerome Powell
    Join this channel to get access to perks: https://www.youtube.com/channel/UCqQs28K2zj2dOsc...
    published: 18 Mar 2024
    Play in Full Screen
    3:56
    Jesse Powell - You (Official Music Video) ft. Gerald Albright
    REMASTERED IN HD! Official Music Video for You performed by Jesse Powell ft. Gerald Albrig...
    published: 11 Nov 2022
    Play in Full Screen

    Powell (surname)

    Powell is a traditional Welsh surname. It is sometimes said to mean "Son of the Servant of St. Paul", but is more likely to be a patronymic from the Welsh first name Howel. The Old Celtic term "ap" means "son of", hence ap Howel was eventually spelled as Powell. At the time of the British Census of 1881, the frequency of the surname Powell was highest in Brecknockshire (21.9 times the British average), followed by Radnorshire, Herefordshire, Monmouthshire, Shropshire, Glamorgan, Flintshire, Denbighshire, Gloucestershire and Worcestershire.

    Deceased

  • Adam Clayton Powell, Sr. (1865 1953), prominent minister of the Abyssinian Baptist Church in Harlem, New York
  • Adam Clayton Powell, Jr. (1908 1972), minister and politician, first African American to become a powerful figure in the United States Congress
  • Alfred Hoare Powell (1865 1960) English Arts and Crafts architect, pottery decorator and artist
  • Anthony Powell (1905 2000), English novelist
  • Arthur William Baden Powell (1901 1987), New Zealand malacologist and paleontologist
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    Dr. Michael Powell, Crater Chiropractic Clinic

    Dr. Michael Powell, Crater Chiropractic Clinic
    2:27
    Dr. Michael Powell, Crater Chiropractic Clinic
    Dr. Michael Powell, Crater Chiropractic Clinic
    published: 02 Nov 2019
    Play in Full Screen
    3:46
    Mysterious creature spotted in depths of Lake Tahoe
    KCRA 3 explores the myths and reality of what’s at the bottom of Lake Tahoe. Subscribe t...
    published: 31 Aug 2016
    Play in Full Screen
    12:21
    Grand Canyon, Lake Powell, Monument Valley, and Meteor Crater Tour
    published: 03 Feb 2018
    Play in Full Screen
    3:59
    How Arizona's Lake Powell came to be
    (ARIZONA HIGHWAYS TV) - Lake Powell is the second largest man-made lake in the United Stat...
    published: 21 May 2019
    Play in Full Screen
    1:35
    Woman Who Used Adult Toy on Beach Found Dead in Apartment
    Police bodycam video shows police approaching Christina Revels-Glick, who was accused of u...
    published: 17 Dec 2023
    Play in Full Screen
    0:27
    Big Drop on the Trail "Crater" (In Powell River.)
    published: 15 Jun 2022
    Play in Full Screen
    12:03
    Pre-Flood Mega Quarry Discovered in Utah
    Watch the full video from the POV Channel here: https://www.youtube.com/watch?v=Lngf0N8OrN...
    published: 26 Mar 2024
    Play in Full Screen
    16:45
    Billy Newman Photo Podcast | 84 Powell Lake Arizona and the Crater Lake Tiki Man
    Billy Newman and Marina Hansen discuss two photographs. Photographing popular areas in th...
    published: 28 Apr 2017
    Play in Full Screen
    16:37
    Shocking CCTV Hidden Security Camera Video Footage Captures The Unimaginable And It Ends In Tragedy!
    Unfortunate? Or Karma? Get all Kevin E Lake novels and short story collections in print or...
    published: 06 Mar 2021
    Play in Full Screen
    0:53
    Opening a dam gate after years of it being closed #amazing
    ​@LifeWithEvan come say hi! patchtolife.com is my company. I created a hangover cure that ...
    published: 05 Jan 2022
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×