{"id":1315,"date":"2021-09-21T12:09:00","date_gmt":"2021-09-21T16:09:00","guid":{"rendered":"https:\/\/giving.georgetown.edu\/give\/?page_id=1315"},"modified":"2021-09-23T13:27:38","modified_gmt":"2021-09-23T17:27:38","slug":"annual","status":"publish","type":"page","link":"https:\/\/giving.georgetown.edu\/give\/annual\/","title":{"rendered":"2021.10 Donlon_Landing Page(GUMC)"},"content":{"rendered":"\n    \n    \n\n\n\n<div\n        class=\"f--field f--oa-hidden-title \"\n                        >\n\n    \n      <h1 class=\"visually-hidden\">\n    Make a Gift to Georgetown University Medical Center\n  <\/h1>\n\n<\/div><!-- f--field f--oa-hidden-title -->\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png\" alt=\"\" class=\"wp-image-738\" width=\"1920\" height=\"500\"><\/figure>\n\n\n\n  \n    \n\n<section\n   id=\"give\"  class=\"cc--component-container cc--oa-pre-form appearance-pantone199 \"\n\n   aria-label=\"Giving form\"\n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-pre-form\"\n        >\n\n          <div class=\"hero-image-container\">\n    <div class=\"hero-image-wrapper\">\n      <div class=\"hero-image-default\">\n            \n    \n\n\n\n<div\n        class=\"f--field f--hero-image \"\n                        >\n\n    \n          <img decoding=\"async\" class=\"hero-img\" src=\"\" alt=\"\" \/>\n  \n<\/div><!-- f--field f--hero-image -->\n              <\/div>\n\n              <div class=\"default-only\"><\/div>\n          <\/div>\n  <\/div>\n\n  <div class=\"gravity-container\">\n    <script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]&gt; *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_19' ><form method='post' enctype='multipart\/form-data'  id='gform_19'  action='\/give\/wp-json\/wp\/v2\/pages\/1315' data-formid='19' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_19' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_19_1\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><\/li><li id=\"field_19_5\" class=\"gfield gfield--type-FieldsetBegin donation-fieldset field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_5'>Amount Options<\/label><\/li><li id=\"field_19_2\" class=\"gfield gfield--type-radio gfield--type-choice dollar-amount-radio-buttons field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label screen-reader-text' ><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_19_2'>\n\t\t\t<li class='gchoice gchoice_19_2_0'>\n\t\t\t\t<input name='input_2' type='radio' value='500'  id='choice_19_2_0'    \/>\n\t\t\t\t<label for='choice_19_2_0' id='label_19_2_0' class='gform-field-label gform-field-label--type-inline'>$500<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_19_2_1'>\n\t\t\t\t<input name='input_2' type='radio' value='250'  id='choice_19_2_1'    \/>\n\t\t\t\t<label for='choice_19_2_1' id='label_19_2_1' class='gform-field-label gform-field-label--type-inline'>$250<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_19_2_2'>\n\t\t\t\t<input name='input_2' type='radio' value='100' checked='checked' id='choice_19_2_2'    \/>\n\t\t\t\t<label for='choice_19_2_2' id='label_19_2_2' class='gform-field-label gform-field-label--type-inline'>$100<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_19_2_3'>\n\t\t\t\t<input name='input_2' type='radio' value='50'  id='choice_19_2_3'    \/>\n\t\t\t\t<label for='choice_19_2_3' id='label_19_2_3' class='gform-field-label gform-field-label--type-inline'>$50<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_19_2_4'>\n\t\t\t\t<input name='input_2' type='radio' value='25'  id='choice_19_2_4'    \/>\n\t\t\t\t<label for='choice_19_2_4' id='label_19_2_4' class='gform-field-label gform-field-label--type-inline'>$25<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_19_2_5'>\n\t\t\t\t<input name='input_2' type='radio' value='gf_other_choice'  id='choice_19_2_5'   onfocus=\"jQuery(this).next('input').focus();\" \/>\n\t\t\t\t<input class='small' id='input_19_2_other' name='input_2_other' type='text' value='Other' aria-label='Other' onfocus='jQuery(this).prev(\"input\")[0].click(); if(jQuery(this).val() == \"Other\") { jQuery(this).val(\"\"); }' onblur='if(jQuery(this).val().replace(\" \", \"\") == \"\") { jQuery(this).val(\"Other\"); }'   \/>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_19_9\" class=\"gfield gfield--type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_9'>Your Gift Will Support<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_9' id='input_19_9' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Georgetown University Medical Center' >Georgetown University Medical Center<\/option><\/select><\/div><\/li><li id=\"field_19_4\" class=\"gfield gfield--type-hidden gform_hidden field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_text'><input name='input_4' id='input_19_4' type='hidden' class='gform_hidden'  aria-invalid=\"false\" value='22WG001825' \/><\/div><\/li><li id=\"field_19_7\" class=\"gfield gfield--type-FieldsetEnd field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_7'>Untitled<\/label><\/li><li id=\"field_19_11\" class=\"gfield gfield--type-FieldsetEnd field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_11'>Untitled<\/label><\/li><li id=\"field_19_17\" class=\"gfield gfield--type-FieldsetEnd field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_17'>Untitled<\/label><\/li><li id=\"field_19_12\" class=\"gfield gfield--type-FieldsetEnd field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_19_12'>Untitled<\/label><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_19' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Continue'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_19' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_19' id='gform_theme_19' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_19' id='gform_style_settings_19' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_19' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='19' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_19' value='WyJbXSIsIjhhNzk4MjY1NmFiNTU3M2JmYmNjZTQzY2IwMmY4ZGEwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_19' id='gform_target_page_number_19' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_19' id='gform_source_page_number_19' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 19, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery('#gform_ajax_frame_19').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_19');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_19').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_19').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_19').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_19').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_19').val();gformInitSpinner( 19, 'data:image\/gif;base64,R0lGODlhAQABAAD\/ACwAAAAAAQABAAACADs=', true );jQuery(document).trigger('gform_page_loaded', [19, current_page]);window['gf_submitting_19'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_19').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [19]);window['gf_submitting_19'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_19').text());}else{jQuery('#gform_19').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"19\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_19\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_19\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_19\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 19, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]&gt; *\/\n<\/script>\n\n\n  <\/div>\n\n    <\/div><!-- c--component c--oa-pre-form -->\n\n<\/section><!-- cc--component-container cc--oa-pre-form -->\n\n\n\n<div class=\"d68a05c2-491e-49e5-ba03-ca3465b49ebb\">\n\n\n        <div class=\"topSection\">\n            <div class=\"copyArea\">\n                <div class=\"title\">\n                    <h2>Improving Language and Cognitive Abilities After Stroke<\/h2>\n                <\/div>\n                <div class=\"bodycopy\">\n                    <p>BUILD (Brain-based Understanding of Individual Language Differences) is a project in Dr. Turkeltaub\u2019s lab that is studying whether the differences in recovery between stroke survivors are due to the nature of an individual\u2019s stroke and also the strength of brain structures and connections that were not affected by the stroke.<\/p>\n                    <p>By understanding these \u201cindividual differences\u201d in language and the brain, we hope in the future to predict who will recover well and who may need extra help after their stroke. And ultimately, we hope that BUILD will guide us toward new targets for brain stimulation treatments that improve language and cognitive abilities after stroke. <\/p>\n                    <p>\u201cOur long-term vision is to restore brain function after stroke in a dramatically more effective way than we can now,\u201d says Dr. Turkeltaub. \u201cAchieving that vision will require major breakthroughs that I hope will be possible with hard work and support from generous donors to Georgetown.\u201d<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"image\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-35@2x.png\" alt=\"\"><\/div>\n        <\/div>\n\n\n\n        <!-- Next Section -->\n\n        <div class=\"iconContainer\">\n            <div class=\"titleArea\">\n                <h2>New Medical\/Surgical Pavilion to Open in 2023<\/h2>\n                <p>The opening of the new Medical\/Surgical Pavilion at MedStar Georgetown University Hospital is just around the corner.<\/p>\n            <\/div>\n            <div class=\"lower\">\n                <div class=\"icon1\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/square-feet@2x.png\" alt=\"\"><\/div>\n                <div class=\"text1\"><p>477,213 sq. ft.<\/p><\/div>\n                <div class=\"icon2\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Artboard-1-copy-4@2x.png\" alt=\"\"><\/div>\n                <div class=\"text2\"><p>156 private patient rooms<\/p><\/div>\n                <div class=\"icon3\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/operating-room@2x.png\" alt=\"\"><\/div>\n                <div class=\"text3\"><p>31 state-of-the-art operating rooms<\/p><\/div>\n                <div class=\"icon4\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-34@2x.png\" alt=\"\"><\/div>\n                <div class=\"text4\"><p>A world-class academic center for the next generation of physicians and nurses<\/p><\/div>\n                <div class=\"icon5\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-19@2x.png\" alt=\"\"><\/div>\n                <div class=\"text5\"><p>Translation of breakthrough research and treatment initiatives<\/p><\/div>\n                <div class=\"icon6\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/emergency-department@2x.png\" alt=\"\"><\/div>\n                <div class=\"text6\"><p>New emergency department with 32 private rooms<\/p><\/div>\n                <div class=\"icon7\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/heli-pad@2x.png\" alt=\"\"><\/div>\n                <div class=\"text7\"><p>Rooftop helipad with direct access to the emergency department<\/p><\/div>\n\n\n\n\n\n\n            <\/div>\n        <\/div>\n\n\n\n\n\n        <div class=\"lowerSection\">\n            <div class=\"image\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Mask-Group-3@2x-1.png\" alt=\"\"><\/div>\n            <div class=\"copyArea\">\n                <div class=\"title\">\n                    <h2>Hope for Football Players Who Have Sustained Multiple Low-Level Head Impacts<\/h2>\n                <\/div>\n                <div class=\"bodyCopy\">\n                    <p>Georgetown investigators, working with collaborators at the National Institute of Health, recently published their findings from a study to understand how the brain changes in response to the low-level head impacts that many young football players, for example, are regularly experiencing.<\/p>\n                    <p>Behavioral issues believed to come from head impact have been reported in athletes with exposure to repeated hits. These issues range from mild learning and memory deficits to behavioral changes that include aggression, impulsivity, and sleep disorders.<\/p>\n                    <p>The investigators found that when the frequency of these head impacts is increased, the brain adapts and changes how it functions. But they also found the molecular pathway responsible for this down-tuning of the brain that can prevent this adaptation from occurring. And their findings suggest that tailored drug therapy can be developed to reactivate and normalize cognitive function.<\/p>\n                    <p>This represents hope to athletes and their families who worry that a change in behavior and memory could mean chronic traumatic encephalopathy, a degenerative brain disease. <strong><a href=\"https:\/\/gumc.georgetown.edu\/news-release\/new-finding-suggests-cognitive-problems-caused-by-repeat-mild-head-hits-could-be-treated\/\">Learn More<\/a><\/strong><\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n\n\n\n        <div class=\"ctaContainer\">\n            <div class=\"copyAreaBelow\">\n                <h3>Please Give Before November 1!<\/h3>\n                <p>Research is the key to transforming and saving lives. It\u2019s private contributions from friends like you that are the key to groundbreaking research at Georgetown that will change and save lives. Thank you!<\/p>\n            <\/div>\n            <div class=\"cta\"><a href=\"http:\/\/giving.georgetown.edu\/gumc\/annual?appealcode=22WG001825&amp;utm_source=landingpage&amp;utm_medium=headerbutton&amp;utm_campaign=october2021\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Mask-Group-1@2x.png\" alt=\"\"><\/a><\/div>\n\n        <\/div>\n\n\n\n\n\n\n    <\/div>\n\n\n\n<section class=\"lower-div\">\n\n            <div class=\"main\">\n                <div class=\"image\"><img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/07\/Asset-1@2x.png\" alt=\"\" class=\"btm-img\"><\/div>\n                <div class=\"copy\">\n                    <h2><em>Partner with Us Today<\/em><\/h2>\n                    <p class=\"copy\">100% of your gift goes directly to innovative research that will give patients the best chance for survival.<br>Please&nbsp;give generously!<\/p>\n                <\/div>\n\n                <div class=\"cta\">\n\n                    <a href=\"http:\/\/giving.georgetown.edu\/gumc\/annual?appealcode=22WG001825&#038;utm_source=landingpage&#038;utm_medium=footerbutton&#038;utm_campaign=october2021\" class=\"btm-cta\"> <img decoding=\"async\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/07\/btm-cta.jpg\" alt=\"\"> <\/a>\n                <\/div>\n            <\/div>\n\n        <\/section>\n\n\n\n  \n    \n\n<section\n   id=\"about\"  class=\"cc--component-container cc--oa-two-column appearance-light-gray \"\n\n   aria-label=\"About Georgetown University Medical Center\"\n  \n  \n  \n  \n  \n  >\n\n    <div class=\"c--component c--oa-two-column\"\n        >\n\n          <div class=\"content\">\n    <div class=\"left column\">\n              <h2 class=\"heading left-heading\">\n          About Georgetown University Medical Center\n        <\/h2>\n            <p>Georgetown University Medical Center is an internationally recognized academic health and science center with a four-part mission of research, teaching, service and patient care. Patient care, clinical research and education is conducted with our academic health system parter, MedStar Health.<\/p>\n<p>The largest, most prominent Catholic medical center in the country, Georgetown University Medical Center\u2019s mission is carried out with a dedication to the Catholic, Jesuit principles of public service to others and <em>cura personalis<\/em>, or \u201ccare of the whole person.\u201d<\/p>\n\n    <\/div>\n  <\/div>\n\n  <div class=\"content\">\n    <div class=\"right column\">\n              <h2 class=\"heading right-heading\">\n          Ways to Give\n        <\/h2>\n            <ul>\n<li>Make a gift by credit card or PayPal through <a href=\"http:\/\/giving.georgetown.edu\/lccc-gift?appealcode=22WW001906\">our online giving form<\/a>.<\/li>\n<li>Make a gift by phone at (202) 687-1690.<\/li>\n<li>If you have questions about giving, email us at <a href=\"mailto:giving@georgetown.edu\" target=\"_blank\" rel=\"noopener\">giving@georgetown.edu<\/a>.<\/li>\n<li>To learn about the many creative ways to support Georgetown, visit our <a href=\"https:\/\/giving.georgetown.edu\/how-to-give\/\" target=\"_blank\" rel=\"noopener\">How to Give webpage<\/a>.<\/li>\n<\/ul>\n\n    <\/div>\n  <\/div>\n\n    <\/div><!-- c--component c--oa-two-column -->\n\n<\/section><!-- cc--component-container cc--oa-two-column -->\n\n\n\n<p><\/p>\n\n\n\n<link rel=\"stylesheet\" href=\"https:\/\/api.digitalwerksinnovations.com\/client\/gumc\/october\/style.min.css\">\n<script>\njQuery('#gform_19').prepend('<h2>127 gifts needed by Nov. 1<\/h2><p>100% of your gift today directly supports groundbreaking research in the fight against devastating diseases. Please give generously and together, let\u2019s accelerate innovations that will change and save lives!<\/p>');\n\/\/jQuery('.c--oa-feature-menu a').attr('href','http:\/\/giving.georgetown.edu\/lccc-gift?appealcode=22CW001814\ufeff');\njQuery('.c--oa-pre-form').prepend(jQuery('.gravity-container'));\n<\/script>\n\n<script>jQuery('.hero-image-default img').remove();jQuery('.hero-image-default').append('<img decoding=\"async\" width=\"100%\" src=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Layer-2.png\"\/><div class=\"upperCopy\"><p>After suffering a stroke in 2018, Maury Mendenhall faced numerous setbacks, including having to learn to read and write again. She has made a remarkable recovery in large part because of a research study in the lab of Peter E. Turkeltaub, M.D., Ph.D., director of the Cognitive Recovery Lab, which is a part of the Center for Brain Plasticty and Recovery at Georgetown.<\/p><p>\u201cIt is really exciting to see how a brain can improve over time,\u201d says Maury. \u201cDr. Turkeltaub helps me think of different ways to adapt and get on with my life. This research is a wonderful gift right now to those of us participating. I like knowing that there is always the possibility that I can improve. It makes me want to work harder.\u201d<\/p><p>Thank you for the help and hope you bring to patients like Maury!<\/p><\/div>');<\/script>\n\n\n\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/moment.js\/2.27.0\/moment.min.js\" integrity=\"sha256-ZsWP0vT+akWmvEMkNYgZrPHKU9Ke8nYBPC3dqONp1mY=\" crossorigin=\"anonymous\"><\/script>\n<!-- Hotjar Tracking Code for https:\/\/giving.georgetown.edu -->\n<script>\n\n\n\n\n\n    (function(h,o,t,j,a,r){\n        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};\n        h._hjSettings={hjid:2083439,hjsv:6};\n        a=o.getElementsByTagName('head')[0];\n        r=o.createElement('script');r.async=1;\n        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;\n        a.appendChild(r);\n    })(window,document,'https:\/\/static.hotjar.com\/c\/hotjar-','.js?sv=');\n\n\n<\/script>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Improving Language and Cognitive Abilities After Stroke BUILD (Brain-based Understanding of Individual Language Differences) is a project in Dr. Turkeltaub\u2019s lab that is studying whether the differences in recovery between [&hellip;]<\/p>\n","protected":false},"author":885,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page_landing-page.php","meta":{"_acf_changed":false,"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-1315","page","type-page","status-publish","hentry"],"acf":{"mapbox_embed":false,"page_header_appearance":"header-default","contact_button_text":"","contact_email":"","share_link":"","chart_embed":false,"override_nav_logo":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Make a Gift to Georgetown Lombardi Comprehensive Cancer Center<\/title>\n<meta name=\"description\" content=\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/giving.georgetown.edu\/give\/annual\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\" \/>\n<meta property=\"og:description\" content=\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/giving.georgetown.edu\/give\/annual\/\" \/>\n<meta property=\"og:site_name\" content=\"Give\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-23T17:27:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/annual\/\",\"name\":\"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center\",\"isPartOf\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png\",\"datePublished\":\"2021-09-21T16:09:00+00:00\",\"dateModified\":\"2021-09-23T17:27:38+00:00\",\"description\":\"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.\",\"breadcrumb\":{\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/giving.georgetown.edu\/give\/annual\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png\",\"contentUrl\":\"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png\",\"width\":1920,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/annual\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/my.giving.georgetown.edu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2021.10 Donlon_Landing Page(GUMC)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/giving.georgetown.edu\/give\/#website\",\"url\":\"https:\/\/giving.georgetown.edu\/give\/\",\"name\":\"Give\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/giving.georgetown.edu\/give\/annual\/","og_locale":"en_US","og_type":"article","og_title":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","og_description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","og_url":"https:\/\/giving.georgetown.edu\/give\/annual\/","og_site_name":"Give","article_modified_time":"2021-09-23T17:27:38+00:00","og_image":[{"url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/giving.georgetown.edu\/give\/annual\/","url":"https:\/\/giving.georgetown.edu\/give\/annual\/","name":"Make a Gift to Georgetown Lombardi Comprehensive Cancer Center","isPartOf":{"@id":"https:\/\/giving.georgetown.edu\/give\/#website"},"primaryImageOfPage":{"@id":"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage"},"image":{"@id":"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage"},"thumbnailUrl":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png","datePublished":"2021-09-21T16:09:00+00:00","dateModified":"2021-09-23T17:27:38+00:00","description":"Georgetown Lombardi Comprehensive Cancer Center prevents, treats, and cures cancers by blending cutting-edge research and discovery, expert and passionate patient care, quality education, and partnership with the community. With your help, ending cancer starts at Georgetown Lombardi.","breadcrumb":{"@id":"https:\/\/giving.georgetown.edu\/give\/annual\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/giving.georgetown.edu\/give\/annual\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/giving.georgetown.edu\/give\/annual\/#primaryimage","url":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png","contentUrl":"https:\/\/giving.georgetown.edu\/give\/wp-content\/uploads\/sites\/12\/2021\/09\/Group-36@2x.png","width":1920,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/giving.georgetown.edu\/give\/annual\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/my.giving.georgetown.edu\/"},{"@type":"ListItem","position":2,"name":"2021.10 Donlon_Landing Page(GUMC)"}]},{"@type":"WebSite","@id":"https:\/\/giving.georgetown.edu\/give\/#website","url":"https:\/\/giving.georgetown.edu\/give\/","name":"Give","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/giving.georgetown.edu\/give\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/1315","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/users\/885"}],"replies":[{"embeddable":true,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/comments?post=1315"}],"version-history":[{"count":61,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/1315\/revisions"}],"predecessor-version":[{"id":1471,"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/pages\/1315\/revisions\/1471"}],"wp:attachment":[{"href":"https:\/\/giving.georgetown.edu\/give\/wp-json\/wp\/v2\/media?parent=1315"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}