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

Henry Clay

Henry Clay, Sr. (April 12, 1777 – June 29, 1852) was an American lawyer, politician, and skilled orator who represented Kentucky in both the United States Senate and House of Representatives. He served three non-consecutive terms as Speaker of the House of Representatives and was also Secretary of State from 1825 to 1829. Clay ran for the presidency several times, but lost each election.

Clay was a very dominant figure in both the First and Second Party systems. As a leading war hawk in 1812, he favored war with Britain and played a significant role in leading the nation to war in the War of 1812. In 1824 he ran for president and lost, but maneuvered House voting in favor of John Quincy Adams, who made him Secretary of State. Opposing candidate Andrew Jackson denounced the actions of Clay and Adams as part of a "corrupt bargain." Clay ran for president again, and lost the general election in 1832, as the candidate of the National Republican Party, and in 1844 as the candidate of the Whig Party. He was a strong proponent of the American System, fighting for an increase in tariffs to foster industry in the United States, the use of federal funding to build and maintain infrastructure, and a strong national bank. He opposed the annexation of Texas and "Manifest Destiny" policy of Democrats, fearing it would inject the slavery issue into politics. This cost him votes in the close presidential election of 1844. Clay later opposed the Mexican-American War.

Henry Robinson Clay

Captain Henry Robinson Clay, Jr. was a World War I flying ace credited with eight confirmed aerial victories.

Though born in Plattsburg, Missouri on 27 November 1895, Clay later lived in Fort Worth, Texas.

He was one of the first contingent of American fliers shipped to England to gain seasoning with the Royal Flying Corps. While assigned to 43 Squadron, he claimed a win, but it went unverified. He then transferred to the 148th Aero Squadron. He scored eight times between 16 August and 27 September 1918; on the latter date, he shared in the destruction of a Halberstadt reconnaissance plane with Elliott White Springs. In total, Clay destroyed five Fokker D.VIIs, considered the best fighters in the war, and drove another down out of control; he shared in the destruction of two German reconnaissance planes. Clay was promoted to command of 41st Aero Squadron, but the war ended before it could see action.

He died during the great influenza epidemic, on 17 February 1919.

Honors and awards

Henry Clay (cigar)

Henry Clay is a brand of cigars named after early American politician Henry Clay (1777-1852). The cigars are currently manufactured in the Dominican Republic.

History

The Henry Clay brand was first created in the 1840s by the Cuban tobacco magnate, Spanish emigrant Julian Alvarez. The name was proposed by Alvarez when he was in the service of an employer and he maintained it once he was in business for himself.

The Cuban business interest of Alvarez eventually was transferred to a British company named Henry Clay and Bock & Co. Ltd. which was founded in 1888. Henry Clay and Bock & Co. Ltd. would become a component of the Tobacco Trust that, along with other trusts, was an object of the anti-trust legislation of the United States.

The brand is currently in the possession of the Spanish company Altadis, a division of Imperial Tobacco.

In popular culture

  • English writer Rudyard Kipling mused "There's calm in a Henry Clay" in his 1886 poem "The Betrothed".
  • Mentioned in English occultist Aleister Crowley's 1918 poem "Absinthe: The Green Goddess": "Here, too, sat Henry Clay, who lived and died to give his name to a cigar".
  • Henry Clay (disambiguation)

    Henry Clay (1777–1852) was an American politician from Kentucky.

    Henry Clay may also refer to:

  • Henry Clay, Jr. (1811–1847), his son, American soldier and statesman
  • Henry Clay (Steamboat), subject of the Hudson River's worst steamboat disaster, in Riverdale, the Bronx, New York, on July 28, 1852
  • Henry Clay High School, oldest public high school in Lexington, Kentucky
  • USS Henry Clay (SSBN-625), a Lafayette-class ballistic missile submarine
  • Henry Clay (cigar), a brand of cigars
  • Henry Robinson Clay (1895–1919), World War I flying ace
  • Sir Henry Clay, 6th Baronet (1909–1985), English engineer
  • Henry Clay (rower) (born 1955), British Olympic rower
  • Henry Clay, Kentucky
  • Henry Clay Township, Fayette County, Pennsylvania, township in Fayette County, Pennsylvania
  • Henry Clay, Delaware, an unincorporated community in New Castle County, Delaware, United States
  • See also

  • Harry Clay (disambiguation)
  • Clay family
  • All pages beginning with "Henry Clay"
  • Henry Clay (Steamboat)

    Henry Clay was an American side paddle wheel steamboat that was involved in the Hudson River's worst steam disaster, near Riverdale, in The Bronx, New York, on July 28, 1852. The Henry Clay launched in August 1851, was in service between Albany, New York and New York City in competition with other steamships and the Hudson River Railroad which had been completed along the east shore of the Hudson River to East Albany by 1851.

    On July 28, 1852, she was sailing on the Hudson River from the river port of Albany, New York, to New York City. As she neared Riverdale, New York, a fire broke out aboard. Reports indicated that upwards of five hundred people were on board with only two lifeboats, which proved useless. Many of the victims came from prestigious families which made the disaster more newsworthy. Among the known victims was Stephen Allen, a former mayor of New York City. Congress, previously reluctant to pursue further steamboat legislation, was forced by the public to push through new regulations.

    Henry Clay (rower)

    John Henry Clay (born 20 March 1955) is a British rower who competed in the 1976 Summer Olympics and in the 1980 Summer Olympics.

    Clay was educated at Cambridge University. He rowed for Cambridge in The Boat Race in the 1974, 1975 and 1976 races. Cambridge won in 1975.

    At the 1976 Summer Olympics Clay partnered David Sturge in the coxless pair and finished twelfth.

    Four years later in the 1980 Summer Olympics Clay was a member of the British boat which won the silver medal in the eights competition.

    See also

  • List of Cambridge University Boat Race crews
  • References


    Podcasts:

    Famous quotes by Henry Clay:

    "The Constitution of the United States was made not merely for the generation that then existed, but for posterity- unlimited, undefined, endless, perpetual posterity"
    "Let him who elevates himself above humanity . . . say, if he pleases, "I will never compromise"; but let no one who is not above the frailties of our common nature disdain compromise."
    "I would rather be right than President"
    "Statistics are no substitute for judgment"
    "Government is a trust, and the officers of the government are trustees; and both the trust and the trustees are created for the benefit of the people"
    "Courtesies of a small and trivial character are the ones which strike deepest in the grateful and appreciating heart"
    "Of all the properties which belong to honorable men, not one is so highly prized as that of character."
    "An oppressed people are authorized whenever they can to rise and break their fetters."
    "If you wish to avoid foreign collision, you had better abandon the ocean."
    "Yes, sir, from Constantinople, or from the Brazil; from Turk or Christian; from black or white; from the dey of Algiers or the bey of Tunis; from the devil himself, if he wore a crown, we should receive a minister"
    "Government is a trust, and the officers of the government are trustees. And both the trust and the trustees are created for the benefit of the people."
    "I have heard something said about allegiance to the South. I know no South, no North, no East, no West, to which I owe any allegiance."
    "The Constitution of the United States was made not merely for the generation that then existed, but for posterity- unlimited, undefined, endless, perpetual posterity."
    "Of all human powers operating on the affairs of mankind, none is greater than that of competition."
    "Statistics are no substitute for judgment."
    "I would rather be right than President."
    "Courtesies of a small and trivial character are the ones which strike deepest in the grateful and appreciating heart."
    PLAYLIST TIME:
    '); } 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)); } }); }); }); // -->

    Latest News for: henry clay

    Edit

    House Speaker Mike Johnson swears in Randy Fine as Florida's 6th District congressman

    jacksonville.com 03 Apr 2025
    Republicans. Randy Fine wins battle in war for 'soul of our country' ... When he was 16, Henry Clay High School junior Randy Fine moved from his home in Lexington, Kentucky, to Washington, where he served as a page in the U.S. House of Representatives ... "...
    Edit

    Randy Fine to take oath of office, become Florida's 6th District congressman at 6 p.m.

    The Daytona Beach News Journal 02 Apr 2025
    Republicans. Randy Fine wins battle in war for 'soul of our country' ... When he was 16, Henry Clay High School junior Randy Fine moved from his home in Lexington, Kentucky, to Washington, where he served as a page in the U.S. House of Representatives.
    Edit

    We look at the history of filibustering in the US as NJ Sen. Cory Booker continues to talk

    northjersey.com 02 Apr 2025
    Sen. Cory Booker filibuster on Senate floor tackles spending cuts ... Sen ... On Sept ... In 1841, Henry Clay threatened to change Senate rules to limit debate as Democrats refused to stop talking when the Senate Whigs tried to create a national bank ... Oregon Sen.
    Edit

    Out to Lunch with Payton

    Calhoun Times 31 Mar 2025
    Review of dining experience at Henry Clay Inn, featuring upscale American farm-to-table cuisine ....
    Edit

    Art can help remind US and Europe of special relationship, says director of reopening Frick Collection

    The Observer 30 Mar 2025
    The Frick, which started with the collection of Henry Clay Frick, the Robber Baron-era industrialist, has long been an oasis from the intensity of the city – a home in a grand style but domestic in overall feel ... View image in fullscreen ... Photograph ... .
    Edit

    Behold the Frick

    New York Magazine 28 Mar 2025
    The art historian Bernard Berenson once sniffed that the Frick, founded by the morally compromised robber-baron philanthropist Henry Clay ... Born in 1849, Henry Clay Frick is a familiar historical type.
    Edit

    The Future of Ukraine: What’s in it for the United States?

    Independent online (SA) 28 Mar 2025
    By Armstrong Williams ... He intuitively acknowledges the prescience of Senator Henry Clay in nixing United States intervention in defence of the 1848-1849 Hungarian Revolution suppressed by the Russian army. ... It was a magnificent theater ... True enough.
    Edit

    'So unique': Frick Collection set to reopen in New York

    Laurel Leader-Call 27 Mar 2025
    New York's storied Frick Collection will reopen its doors on April 17 after five years closed to the public for a major renovation which curators hope will future-proof the collection of former coal and steel magnate Henry Clay Frick ....
    Edit

    DEEDS 03-27-25

    The Pioneer News 27 Mar 2025
    The following are property transfers in Shelby County from Dec. 1-31, 2024. Clayton Properties Group Inc ... John Ferguson and Donald A ... Robert W ... Joel J ... Michael W ... Pontrich to Pontrich Rentals, LLC; Henry Clay; Deed of Conveyance; fair market value $800,000.
    Edit

    Nancy Lee (Clay) Webster

    Omaha World-Herald 26 Mar 2025
    Nancy Lee (Clay) Webster was born on May 22, 1944, in Medford, Massachusetts to Elva and Henry E. Clay. Preceded in death by beloved son Timothy Sherwood Dunning, brother Henry E. Clay II, and sister Merrilyn C. Belliveau. Survived by… ... .
    Edit

    A Light Touch in the Frick Expansion

    New York Magazine 26 Mar 2025
    The low-key new strcuture peers — but does not loom — over Henry Clay Frick’s 1914 mansion ... review architecture architecture review street view city scape the frick collection the frick henry clay flick annabelle selldorf More.
    Edit

    Shelby County health director backs push for public hearing on xAI turbines request

    Commercial Appeal 26 Mar 2025
    County Commissioners Britney Thornton, Miska Clay Bibbs, Erika Sugarmon, Mickell Lowery and Henri Brooks voted for a favorable recommendation of the resolution with Commissioner Mick Wright voting for a non-favorable recommendation ... Lowry Road ... On Jan.
    Edit

    IHSAA basketball All-State teams: IBCA's 2025 Supreme 15, large-, small-school top players

    Reporter-Times - Martinsville 26 Mar 2025
    Gavin Betten, ManchesterCollin Buck, HauserGrady Carpenter, TiptonFletcher Cole, PaoliCam Craig, Switzerland CountyRylan Crocker, OrleansEthan Edwards, Clay CityEaston Foster, Monroe CentralCole ...
    Edit

    ‘No more velvet rope’: how New York’s beloved Frick museum opened up – and will now even sell coffee

    The Observer 25 Mar 2025
    Both home and eye belonged to one man, the Pennsylvania-born coke and steel magnate Henry Clay Frick, who was rich beyond imagining ... Now they have their own room, appropriately Helen Clay Frick’s former bedroom ... Brutal tactics … Henry Clay Frick.
    ×

    Loading...'); var query = jQuery('.radio_query').val(); jQuery.ajax({ data: { query: query }, url: '/api/upge/cheetah-photo-search/radio', success: function(text) { jQuery('.radio-search-results').html(jQuery(text)); updateHeight(); $('#RadioSearchTable').tablesorter(); $('#RadioSearchTable').trigger("update"); } }); return false; // do not submit the form }); $(".search-tools-btn").click(function () { header = $(this); content = $(".search-tools-content"); if(content.is(':visible')) { content.hide('slow'); header.html('Tools '); }else{ content.show('slow'); header.html('Hide '); } }); });