<!DOCTYPE HTML><html lang="en-US" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://ogp.me/ns/fb#">

<head>
<meta charset="UTF-8" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<script>(function(html){ html.className = html.className.replace(/\bno-js\b/,'js'); if (html.classList) { html.classList.add( 'js' ); } else { html.className += ' js'; } })(document.documentElement);</script><style type="text/css">.js.csstransitions .module.wow, .js.csstransitions .themify_builder_content .themify_builder_row.wow, .js.csstransitions .module_row.wow, .js.csstransitions .builder-posts-wrap > .post.wow, .js.csstransitions .fly-in > .post, .js.csstransitions .fly-in .row_inner > .tb-column, .js.csstransitions .fade-in > .post, .js.csstransitions .fade-in .row_inner > .tb-column, .js.csstransitions .slide-up > .post, .js.csstransitions .slide-up .row_inner > .tb-column { visibility:hidden; }</style>
<!-- Title -->
<title>Hurricane Harvey Relief | Ty, Kelly &amp; Chuck Mornings</title><link rel='dns-prefetch' href='//www.tykellyandchuck.com' />
<link rel='dns-prefetch' href='//see-p-elb-01.tritondigital.net' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="canonical" href="http://www.tykellyandchuck.com/2017/08/28/hurricane-harvey-relief-2/" />
		<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/2.2.1\/svg\/","svgExt":".svg","source":{"wpemoji":"http:\/\/www.tykellyandchuck.com\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.tykellyandchuck.com\/wp-includes\/js\/twemoji.js?ver=4.7.3"}};
			( function( window, document, settings ) {
	var src, ready, ii, tests;

	/*
	 * Create a canvas element for testing native browser support
	 * of emoji.
	 */
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
	 * made of two characters, so some browsers (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @param type {String} Whether to test for support of "flag" or "emoji4" emoji.
	 * @return {Boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var stringFromCharCode = String.fromCharCode,
			flag, flag2, technologist, technologist2;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		switch ( type ) {
			case 'flag':
				/*
				 * This works because the image will be one of three things:
				 * - Two empty squares, if the browser doesn't render emoji
				 * - Two squares with 'U' and 'N' in them, if the browser doesn't render flag emoji
				 * - The United Nations flag
				 *
				 * The first two will encode to small images (1-2KB data URLs), the third will encode
				 * to a larger image (4-5KB data URL).
				 */
				context.fillText( stringFromCharCode( 55356, 56826, 55356, 56819 ), 0, 0 );
				if ( canvas.toDataURL().length < 3000 ) {
					return false;
				}

				context.clearRect( 0, 0, canvas.width, canvas.height );

				/*
				 * Test for rainbow flag compatibility. As the rainbow flag was added out of sequence with
				 * the usual Unicode release cycle, some browsers support it, and some don't, even if their
				 * Unicode support is up to date.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + rainbow emoji).
				 */
				context.fillText( stringFromCharCode( 55356, 57331, 65039, 8205, 55356, 57096 ), 0, 0 );
				flag = canvas.toDataURL();

				context.clearRect( 0, 0, canvas.width, canvas.height );

				context.fillText( stringFromCharCode( 55356, 57331, 55356, 57096 ), 0, 0 );
				flag2 = canvas.toDataURL();

				return flag !== flag2;
			case 'emoji4':
				/*
				 * Emoji 4 has the best technologists. So does WordPress!
				 *
				 * To test for support, try to render a new emoji (woman technologist: medium skin tone),
				 * then compare it to how it would look if the browser doesn't render it correctly
				 * (woman technologist: medium skin tone + personal computer).
				 */
				context.fillText( stringFromCharCode( 55357, 56425, 55356, 57341, 8205, 55357, 56507), 0, 0 );
				technologist = canvas.toDataURL();

				context.clearRect( 0, 0, canvas.width, canvas.height );

				context.fillText( stringFromCharCode( 55357, 56425, 55356, 57341, 55357, 56507), 0, 0 );
				technologist2 = canvas.toDataURL();

				return technologist !== technologist2;
		}

		return false;
	}

	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji4' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;

	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		src = settings.source || {};

		if ( src.concatemoji ) {
			addScript( src.concatemoji );
		} else if ( src.wpemoji && src.twemoji ) {
			addScript( src.twemoji );
			addScript( src.wpemoji );
		}
	}

} )( window, document, window._wpemojiSettings );
		</script>
		

<!-- Stylesheets -->
<link rel='stylesheet' id='headway-google-fonts' href='//fonts.googleapis.com/css?family=Oswald' type='text/css' media='all' />
<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
<link rel='stylesheet' id='bxslider-style-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/shared/js/bxslider/jquery.bxslider.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='amp-promo-reel-widget-style-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-promo-reel/includes/../css/widget.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-general-css'  href='http://www.tykellyandchuck.com/wp-content/uploads/sites/530/headway/cache/general-47d8e8c.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-single-css'  href='http://www.tykellyandchuck.com/wp-content/uploads/sites/530/headway/cache/layout-single-298a173.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.tykellyandchuck.com/wp-content/uploads/sites/530/headway/cache/responsive-grid-d2119e4.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='themify-builder-style-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/themify-builder/css/themify-builder-style.css?ver=1.9.6' type='text/css' media='all' />
<link rel='stylesheet' id='amp-breaking-news-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-breaking-news/public/css/public.css?ver=0.2.3' type='text/css' media='all' />
<link rel='stylesheet' id='animate-style-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/shared/css/animate.css?ver=0.2.3' type='text/css' media='all' />
<link rel='stylesheet' id='amp-styles-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-styles/css/public.css?ver=1.4.1' type='text/css' media='all' />
<link rel='stylesheet' id='amp-events-calendar-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-events/css/calendar.css?ver=1.1.4' type='text/css' media='all' />
<link rel='stylesheet' id='amp-events-export-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-events/css/public.css?ver=1.1.4' type='text/css' media='all' />
<link rel='stylesheet' id='amp_feed-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-feeds/css/public.css?ver=0.3.8' type='text/css' media='all' />
<link rel='stylesheet' id='amp-image-rotator-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-image-rotator/public/assets/css/public.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='amp-listen-live-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-listen-live/public/assets/css/public.css?ver=1.4.4' type='text/css' media='all' />
<link rel='stylesheet' id='amp-onair-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-onair/public/assets/css/public.css?ver=1.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='AMPPromoReel-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-promo-reel/css/public.css?ver=1.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='mediaelement-css'  href='http://www.tykellyandchuck.com/wp-includes/js/mediaelement/mediaelementplayer.min.css?ver=2.22.0' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css'  href='http://www.tykellyandchuck.com/wp-includes/js/mediaelement/wp-mediaelement.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='amp-tabs-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-tabs/public/assets/css/public.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='amp-header-rotator-css'  href='http://www.tykellyandchuck.com/wp-content/themes/Headway-AMP_CMS/css/amp-header-rotator.css?ver=1.1.5' type='text/css' media='all' />
<link rel="stylesheet" type="text/css" media="all" href="http://www.tykellyandchuck.com/wp-content/themes/Headway-AMP_CMS/style.css" />

<!-- Scripts -->
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/themes/headway/library/blocks/navigation/js/selectnav.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/themes/headway/library/media/js/jquery.hoverintent.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/themes/headway/library/blocks/navigation/js/jquery.superfish.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/uploads/sites/530/headway/cache/block-dynamic-js-layout-single-769a883.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/shared/js/bxslider/jquery.bxslider.min.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-promo-reel/includes/../js/widget.js?ver=1.4.0'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/themes/headway/library/media/js/jquery.fitvids.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/uploads/sites/530/headway/cache/responsive-grid-js-e6e6939.js?ver=4.7.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _ampconfig = {"site_url":"http:\/\/www.tykellyandchuck.com","site_id":"530","tz":"America\/New_York","tz_offset":"-5","ts":"1512399620","blog_name":"Ty, Kelly & Chuck Mornings","client_name":"cumuluspro","user_ID":"","ts_offset":"1518822865","version":"2.45.0.2","env":"prod","settings":{"tenant_id":"see_10704","syn_site_name":"AMS-NET","selector_logo":false,"selector_masthead":false,"selector_nav":false,"selector_rotator":false,"default_show_name":false,"default_show_img":false,"gtm_id":false,"vidible_company_key":"06125e55709b3c4ffdfe3c3f8a9ed8bd","client_name":false,"nielsen_provider":"cumulus","promoreel_priority":true}};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/shared/js/amp-common.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-breaking-news/public/js/public.js?ver=0.2.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-styles/js/public.js?ver=1.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var dates = {"start_of_week":"1","moment_date_format":"MMMM D, YYYY","moment_time_format":"h:mm a","calendar_date_format":"MMMM d, yyyy","calendar_time_format":"h:mm tt","date_format":"MM d, yy","time_format":"h:mm tt"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-events/js/calendar.js?ver=1.1.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-events/js/public.js?ver=1.1.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-feeds/js/jquery.totemticker.min.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-feeds/js/amp-feed.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-feeds/js/public.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-feeds/js/date.js?ver=0.3.8'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _amplistenlive = {"blog_id":"530","callsign":"","mount_name":"AMS-NET","provider":"stream_the_world","gmt_offset":"-18000"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-listen-live/public/assets/js/public.js?ver=1.4.4'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-onair/public/assets/js/public.js?ver=1.7.1'></script>
<script type='text/javascript' src='//see-p-elb-01.tritondigital.net/widget/see_10704/see.js?ver=1.3.0'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/themes/Headway-AMP_CMS/js/amp-theme.js?ver=1.1.5'></script>

<!--[if lt IE 9]>
<script src="http://www.tykellyandchuck.com/wp-content/themes/headway/library/media/js/html5shiv.js"></script>
<![endif]-->

<!--[if lt IE 8]>
<script src="http://www.tykellyandchuck.com/wp-content/themes/headway/library/media/js/ie8.js"></script>
<![endif]-->

<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type ='text/javascript';
var useSSL ='https:' == document.location.protocol;
gads.src = (useSSL ?'https:' :'http:') + 
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/6717/cd.ams.fm', [[300, 250]],'div-gpt-ad-1418849849333-0').addService(googletag.pubads())
.setTargeting("pos","mid");
googletag.defineSlot('/6717/cd.ams.fm', [[728, 90]],'div-gpt-ad-1418849849333-1').addService(googletag.pubads())
.setTargeting("pos","top");
googletag.defineSlot('/6717/cd.ams.fm', [[728, 90]],'div-gpt-ad-1418849849333-2').addService(googletag.pubads())
.setTargeting("pos","bot");
googletag.defineSlot('/6717/cd.ams.fm', [[300, 250]],'div-gpt-ad-1418849849333-3').addService(googletag.pubads())
.setTargeting("pos","mid2");
googletag.defineSlot('/6717/cd.ams.fm', [[160, 600]],'div-gpt-ad-1418849849333-4').addService(googletag.pubads())
.setTargeting("pos","left").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[160, 600]],'div-gpt-ad-1418849849333-5').addService(googletag.pubads())
.setTargeting("pos","right").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[654, 70]],'div-gpt-ad-1418849849333-6').addService(googletag.pubads())
.setTargeting("pos","rdioplayer").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[300, 100]],'div-gpt-ad-1418849849333-7').addService(googletag.pubads())
.setTargeting("pos","contest1").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[300, 100]],'div-gpt-ad-1418849849333-8').addService(googletag.pubads())
.setTargeting("pos","contest2").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[300, 100]],'div-gpt-ad-1418849849333-9').addService(googletag.pubads())
.setTargeting("pos","contest3").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[59, 26]],'div-gpt-ad-1418849849333-10').addService(googletag.pubads())
.setTargeting("pos","rdiobutton").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[113, 23]],'div-gpt-ad-1418849849333-11').addService(googletag.pubads())
.setTargeting("pos","feedsponsor1").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[113, 23]],'div-gpt-ad-1418849849333-12').addService(googletag.pubads())
.setTargeting("pos","feedsponsor2").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[113, 23]],'div-gpt-ad-1418849849333-13').addService(googletag.pubads())
.setTargeting("pos","feedsponsor3").setCollapseEmptyDiv(true);
googletag.defineSlot('/6717/cd.ams.fm', [[113, 23]],'div-gpt-ad-1418849849333-14').addService(googletag.pubads())
.setTargeting("pos","feedsponsor4").setCollapseEmptyDiv(true);
googletag.pubads().enableSingleRequest();
googletag.enableServices();
googletag.defineSlot('/6717/cd.ams.fm', [[1, 1]],'div-gpt-ad-1418849849333-16').addService(googletag.pubads())
.setTargeting("pos","wallpaper-ad");

});
</script>
<!--ONESTAT SCRIPTCODE START-->
<script type="text/javascript">
  <!--
  function OneStat_Pageview()
  {
      var d=document;
      var sid="ams-net.cumulus";
      var CONTENTSECTION="";
      var osp_URL=d.URL;
      var osp_Title=d.title;
      var t=new Date();
      var p="http"+(d.URL.indexOf('https:')==0?'s':'')+"://stat.onestat.com/stat.aspx?tagver=2&sid="+sid;
      p+="&url="+escape(osp_URL);
      p+="&ti="+escape(osp_Title);
      p+="&section="+escape(CONTENTSECTION);
      p+="&rf="+escape(parent==self?document.referrer:top.document.referrer);
      p+="&tz="+escape(t.getTimezoneOffset());
      p+="&ch="+escape(t.getHours());
      p+="&js=1";
      p+="&ul="+escape(navigator.appName=="Netscape"?navigator.language:navigator.userLanguage);
      if(osp_URL!=d.URL) p+="&ol="+escape(d.URL);
      if(typeof(screen)=="object"){
         p+="&sr="+screen.width+"x"+screen.height;p+="&cd="+screen.colorDepth;
         p+="&jo="+(navigator.javaEnabled()?"Yes":"No");
      }
      d.write('<img id="ONESTAT_TAG" border="0" width="1" height="1" src="'+p+'" >');
  }

  OneStat_Pageview();
  //-->
  </script>
<noscript>
    <a href="http://www.onestat.com"><img border="0" width="1" height="1" src="http://stat.onestat.com/stat.aspx?tagver=2&sid=ams-net.cumulus&js=No&" ALT="OneStat.com Web Analytics"></a>
    </noscript>
<!--ONESTAT SCRIPTCODE END-->

<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','corpDataLayer','GTM-N6HGBW');</script>
<!-- End Google Tag Manager -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="alternate" type="application/rss+xml" title="Ty, Kelly &amp; Chuck Mornings &raquo; Feed" href="http://www.tykellyandchuck.com/feed/" />


<!-- Favicon -->
<link rel="shortcut icon" type="image/ico" href="http://images.tritondigitalcms.com/6616/sites/530/2017/04/30145233/ams-net-favicon1.png" />


<link rel='shortlink' href='http://www.tykellyandchuck.com/?p=912466' />
			<script type="text/javascript">
				var _gaq = _gaq || [];

				
									_gaq.push(['b._setAccount', 'UA-96884709-1']);
					_gaq.push(['b._trackPageview']);
				
				(function() {
				var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                				    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
                				var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
				})();
			</script>

        
				<!-- equalcolumn-ie-fix.js -->
				<!--[if IE 9]>
					<script src="http://www.tykellyandchuck.com/wp-content/plugins/themify-builder/js/equalcolumn-ie-fix.js"></script>
				<![endif]-->
				<script type="text/javascript">				function isSupportTransition() {
				var b = document.body || document.documentElement,
				s = b.style,
				p = 'transition';

				if (typeof s[p] == 'string') { return true; }

				// Tests for vendor specific prop
				var v = ['Moz', 'webkit', 'Webkit', 'Khtml', 'O', 'ms'];
				p = p.charAt(0).toUpperCase() + p.substr(1);

				for (var i=0; i<v.length; i++) {
					if (typeof s[v[i] + p] == 'string') { return true; }
					}
					return false;
					}
					if ( isSupportTransition() ) {
					document.documentElement.className += " csstransitions";	
					}
		</script><script type="text/javascript">var ajaxurl = "http://www.tykellyandchuck.com/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.tykellyandchuck.com/wp-admin/admin-ajax.php"</script>
<!-- AMP CMS DFP custom tags -->
<script type='text/javascript'>
  googletag.cmd.push(function() {
      googletag.pubads().setTargeting('cms-sname', 'Ty Kelly amp Chuck Mornings');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  Country', 'Format Country New', 'Market  Westwood One']);
      googletag.pubads().setTargeting('cms-ptitle', 'Hurricane Harvey Relief');
      googletag.pubads().setTargeting('cms-pcat', ['Blog  In Case You Missed It', 'Blogs']);
  });
</script>

<!-- START - Facebook Open Graph, Google+ and Twitter Card Tags 2.0.4 -->
 <!-- Facebook Open Graph -->
  <meta property="og:locale" content="en_US"/>
  <meta property="og:site_name" content="Ty, Kelly &amp; Chuck Mornings"/>
  <meta property="og:title" content="Hurricane Harvey Relief"/>
  <meta property="og:url" content="http://www.tykellyandchuck.com/2017/08/28/hurricane-harvey-relief-2/"/>
  <meta property="og:type" content="article"/>
  <meta property="og:description" content="We&#039;ve seen the devastation that took place in Houston and the surrounding areas over the weekend, and we want to do everything we can to help. There are many ways you can donate...

 	Join Chris Young in donating toward relief efforts through his verified GoFundMe page here.


 	Text &quot;HARVEY&quot; t"/>
  <meta property="og:image" content="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28113346/AMS-Approved-AMS-Team-1-083120161.jpg"/>
  <meta property="article:published_time" content="2017-08-28T07:10:47+00:00"/>
  <meta property="article:modified_time" content="2017-09-06T07:09:25+00:00" />
  <meta property="og:updated_time" content="2017-09-06T07:09:25+00:00" />
  <meta property="article:section" content="Blog - In Case You Missed It"/>
  <meta property="article:section" content="Blogs"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="Hurricane Harvey Relief"/>
  <meta itemprop="description" content="We&#039;ve seen the devastation that took place in Houston and the surrounding areas over the weekend, and we want to do everything we can to help. There are many ways you can donate...

 	Join Chris Young in donating toward relief efforts through his verified GoFundMe page here.


 	Text &quot;HARVEY&quot; t"/>
  <meta itemprop="image" content="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28113346/AMS-Approved-AMS-Team-1-083120161.jpg"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="Hurricane Harvey Relief"/>
  <meta name="twitter:url" content="http://www.tykellyandchuck.com/2017/08/28/hurricane-harvey-relief-2/"/>
  <meta name="twitter:description" content="We&#039;ve seen the devastation that took place in Houston and the surrounding areas over the weekend, and we want to do everything we can to help. There are many ways you can donate...

 	Join Chris Young in donating toward relief efforts through his verified GoFundMe page here.


 	Text &quot;HARVEY&quot; t"/>
  <meta name="twitter:image" content="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28113346/AMS-Approved-AMS-Team-1-083120161.jpg"/>
  <meta name="twitter:card" content="summary_large_image"/>
 <!-- SEO -->
 <!-- Misc. tags -->
<!-- END - Facebook Open Graph, Google+ and Twitter Card Tags 2.0.4 -->


</head><!-- End <head> -->

<body class="post-template-default single single-post postid-912466 single-format-standard custom responsive-grid-enabled responsive-grid-active layout-single-post-912466 layout-using-single" itemscope itemtype="http://schema.org/WebPage">


<div id="whitewrap">


<div id="wrapper-48" class="wrapper wrapper-fluid wrapper-fixed-grid grid-fluid-24-32-10 responsive-grid wrapper-mirroring-8 wrapper-first wrapper-header" data-alias="Wrapper Header">

<div class="grid-container clearfix">

<section class="row row-1">

<section class="column column-1 grid-left-0 grid-width-24">
<div id="block-27" class="block block-type-custom-code block-fluid-height" data-alias="728x90 Leaderboard Ad">
<div class="block-content">
<div align="center">
<div id='div-gpt-ad-1418849849333-1'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-1'); });
</script>
</div>    
</div>
</div><!-- .block-content -->

</div><!-- #block-27 -->

</section><!-- .column -->

</section><!-- .row -->


<section class="row row-2">

<section class="column column-1 grid-left-0 grid-width-6">
<figure id="block-31" class="logo block block-type-image block-fixed-height" data-alias="Logo" itemscope="" itemtype="http://schema.org/ImageObject">
<div class="block-content">
<a href="/" class="image" ><img src="http://www.tykellyandchuck.com/wp-content/uploads/sites/530/2017/01/ams-net-tykellychuck-sitelogo.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

</figure><!-- #block-31 -->

</section><!-- .column -->

<section class="column column-2 grid-left-8 grid-width-10">
<section id="block-30" class="social-nav block block-type-social block-fixed-height" data-alias="Social Navigation">
<div class="block-content">
<div class="social-icons-container"><ul class="social-icons"><li><a href="https://www.facebook.com/TyKellyandChuck" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/ams-net/wp-content/uploads/sites/530/2014/10/facebook.png" title="Like us on Facebook!" class="img-1"  /></a></li><li><a href="https://twitter.com/TyKellyandChuck" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/ams-net/wp-content/uploads/sites/530/2014/10/twitter.png" title="Follow us on Twitter!" class="img-2"  /></a></li></ul></div><!-- .social-icons-container -->
</div><!-- .block-content -->

</section><!-- #block-30 -->

</section><!-- .column -->

</section><!-- .row -->


<section class="row row-3">

<section class="column column-1 grid-left-6 grid-width-16">
<nav id="block-32" class="main-nav block block-type-navigation block-fluid-height" data-alias="Main Navigation" itemscope="" itemtype="http://schema.org/SiteNavigationElement">
<div class="block-content">
<div class="nav-horizontal nav-align-left"><ul id="menu-main-navigation" class="menu"><li id="menu-item-223590" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-223590"><a href="http://cumulus.pro.poolb.tritondigitalcms.com/ams-net/2014/02/18/on-the-show/">Meet The Show</a>
<ul class="sub-menu">
	<li id="menu-item-504816" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-504816"><a href="http://www.tykellyandchuck.com/ty-bentli/">Ty Bentli</a></li>
	<li id="menu-item-504822" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-504822"><a href="http://www.tykellyandchuck.com/kelly-ford/">Kelly Ford</a></li>
	<li id="menu-item-504819" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-504819"><a href="http://www.tykellyandchuck.com/chuck-wicks/">Chuck Wicks</a></li>
</ul>
</li>
<li id="menu-item-121" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-121"><a href="http://www.tykellyandchuck.com/features/">Features</a>
<ul class="sub-menu">
	<li id="menu-item-215541" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-215541"><a href="http://www.tykellyandchuck.com/category/blog-in-case-you-missed-it/">In Case You Missed It</a></li>
	<li id="menu-item-804576" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-804576"><a href="http://www.tykellyandchuck.com/category/sweetest-thing/">Sweetest Thing</a></li>
	<li id="menu-item-922340" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-922340"><a href="http://www.tykellyandchuck.com/kellys-mom-squad/">Kelly&#8217;s Mom Squad</a></li>
	<li id="menu-item-215529" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-215529"><a href="http://www.tykellyandchuck.com/category/interviews/">Interviews</a></li>
	<li id="menu-item-458521" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-458521"><a href="http://www.tykellyandchuck.com/ty-kelly-and-chuck-podcast/">Podcasts</a></li>
	<li id="menu-item-905287" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-905287"><a href="http://www.tykellyandchuck.com/category/ty-kelly-and-chuck-contests/">Contests</a></li>
</ul>
</li>
<li id="menu-item-905281" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-905281"><a href="http://www.tykellyandchuck.com/category/10-minute-tune/">10 Minute Tune</a></li>
<li id="menu-item-664442" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-664442"><a href="http://www.tykellyandchuck.com/nash-country-daily-2/">Nash Country Daily</a></li>
<li id="menu-item-230751" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-230751"><a href="http://www.tykellyandchuck.com/category/contact-us/">Contact</a>
<ul class="sub-menu">
	<li id="menu-item-230703" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-230703"><a href="http://www.tykellyandchuck.com/join-our-studio-audience/">Join Our Studio Audience</a></li>
	<li id="menu-item-230754" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-230754"><a href="http://www.tykellyandchuck.com/general-inquiries/">General Inquiries</a></li>
</ul>
</li>
</ul></div><!-- .nav-horizontal nav-align-left -->
</div><!-- .block-content -->

</nav><!-- #block-32 -->

</section><!-- .column -->

<section class="column column-2 grid-left-0 grid-width-1">
<nav id="block-33" class="search-box block block-type-navigation block-fluid-height" data-alias="Navigation Search" itemscope="" itemtype="http://schema.org/SiteNavigationElement">
<div class="block-content">
<div class="nav-horizontal nav-align-right nav-search-active nav-search-position-right"><div class="nav-search">
		<form method="get" id="searchform" action="http://www.tykellyandchuck.com/">
			<label for="s" class="assistive-text">Search</label>
			<input type="text" class="field" name="s" id="s" value="Type to search, then press enter" onclick="if(this.value=='Type to search, then press enter')this.value='';" onblur="if(this.value=='')this.value='Type to search, then press enter';" />
			<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
		</form>
	</div></div><!-- .nav-horizontal nav-align-right nav-search-active nav-search-position-right -->
</div><!-- .block-content -->

</nav><!-- #block-33 -->

</section><!-- .column -->

<section class="column column-3 grid-left-0 grid-width-1">
<div id="block-bmf5502fcd998a68" class="search-icon block block-type-custom-code block-fluid-height" data-alias="Search Icon">
<div class="block-content">
<script>
jQuery(function($){
$(".show-search").click(function(){
$(".search-box").toggle(200); 
});
});
</script>
<img class="show-search" src="/wp-content/uploads/sites/530/2015/03/search.png">
</div><!-- .block-content -->

</div><!-- #block-bmf5502fcd998a68 -->

</section><!-- .column -->

</section><!-- .row -->


<section class="row row-4">

<section class="column column-1 grid-left-0 grid-width-5">
<div id="block-b8z54a44441b0250" class="takeover-left block block-type-custom-code block-fluid-height" data-alias="Skyscraper - Left">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-4'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-4'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-b8z54a44441b0250 -->

</section><!-- .column -->

<section class="column column-2 grid-left-0 grid-width-5">
<div id="block-b0b54a44441b2caa" class="takeover-right block block-type-custom-code block-fluid-height" data-alias="Skyscraper - Right">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-5'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-5'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-b0b54a44441b2caa -->

</section><!-- .column -->

</section><!-- .row -->


</div><!-- .grid-container -->

</div><!-- .wrapper -->

<div id="wrapper-49" class="wrapper wrapper-fluid wrapper-fixed-grid grid-fluid-24-32-10 responsive-grid wrapper-content" data-alias="Wrapper Content">

<div class="grid-container clearfix">

<section class="row row-1">

<section class="column column-1 grid-left-0 grid-width-16">
<div id="block-130" class="block block-type-content block-fluid-height" data-alias="">
<div class="block-content">
<div class="loop"><article id="post-912466" class="post-912466 post type-post status-publish format-standard has-post-thumbnail hentry category-blog-in-case-you-missed-it category-blogs author-gjohnson " itemscope itemtype="http://schema.org/BlogPosting"><header><h1 class="entry-title" itemprop="headline">Hurricane Harvey Relief</h1><div class="entry-meta entry-meta-above">Posted on <time class="entry-date published updated" itemprop="datePublished" datetime="2017-08-28T07:10:47+00:00">August 28, 2017</time></div><!-- .entry-meta --></header><div class="entry-content" itemprop="text"><p><a href="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28070715/AMS-Approved-AMS-Team-1-08312016.jpg"><img class="alignnone wp-image-912472" src="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28070715/AMS-Approved-AMS-Team-1-08312016-1024x683.jpg" alt="" width="550" height="367" srcset="http://images.tritondigitalcms.com/6616/sites/530/2017/08/28070715/AMS-Approved-AMS-Team-1-08312016-1024x683.jpg 1024w, http://images.tritondigitalcms.com/6616/sites/530/2017/08/28070715/AMS-Approved-AMS-Team-1-08312016-300x200.jpg 300w, http://images.tritondigitalcms.com/6616/sites/530/2017/08/28070715/AMS-Approved-AMS-Team-1-08312016-768x512.jpg 768w" sizes="(max-width: 550px) 100vw, 550px" /></a></p>
<p>&nbsp;</p>
<p>We&#8217;ve seen the devastation that took place in Houston and the surrounding areas over the weekend, and we want to do everything we can to help. There are many ways you can donate&#8230;</p>
<ul>
<li><strong><a href="https://t.co/oZvwtkp1iU" target="_blank">Join Chris Young in donating toward relief efforts through his verified GoFundMe page here.</a></strong></li>
</ul>
<ul>
<li>Text <strong>&#8220;HARVEY&#8221;</strong> to <strong>90999</strong> to donate <strong>$10 to the Red Cross</strong> to assist with relief efforts.</li>
</ul>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">Chase Bryant</span></strong> called in to provide some insight as to what people in his hometown are experiencing at the hands of Hurricane Harvey.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6245880-chase-bryant-calls-in-about-hurricane-harvey-relief-8-28-17/embed/v4?eid=AQAAALH5o1n4TV8A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Granger Smith</strong></span> called us to encourage people to donate to those affected by Hurricane Harvey.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6246314-granger-smith-calls-in-to-encourage-red-cross-donations-for-hurricane-harvey-victims-8-28-27/embed/v4?eid=AQAAAK4epFmqT18A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Eric Rowe from KRBE in Houston</strong></span> called us from his house to tell us about his current situation and being trapped inside during Hurricane Harvey.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6246317-eric-rowe-from-krbe-in-houston-calls-in-to-depict-current-situation-in-houston-from-hurricane-harvey-8-28-17/embed/v4?eid=AQAAAOMepFmtT18A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Maren Morris</strong></span> checked in with us to encourage fans to continue donating to Hurricane Harvey victims.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6249379-maren-morris-encourages-donations-for-home-state-of-texas-after-hurricane-harvey-8-29-17/embed/v4?eid=AQAAAONKpVmjW18A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Chris Young</strong></span> describes why Texas means so much to him, and tells us more about his GoFundMe campaign. <a href="https://t.co/oZvwtkp1iU" target="_blank"><strong>DONATE to his GoFundMe now, with all proceeds going to the American Red Cross.</strong></a><br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6249520-chris-young-calls-in-to-tell-more-about-his-gofundme-page-for-hurricane-harvey/embed/v4?eid=AQAAABZZpVkwXF8A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Aaron Watson</strong></span> checks in to detail the struggles people of Houston are currently facing and encourages ongoing relief efforts.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6256664-aaron-watson-checks-in-about-hurricane-harvey-relief-efforts-8-31-17/embed/v4?eid=AQAAAIjxp1kYeF8A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline"><strong>Cam</strong></span> called us to make sure Hurricane Harvey relief efforts remain top-of-mind almost a week later, and talks about opening for George Strait in Las Vegas all year.<br />
<iframe style="background-color: transparent;padding: 0;max-width: 700px" src="//embeds.audioboom.com/posts/6273723-cam-checks-in-for-hurricane-harvey-relief-and-talks-opening-for-george-strait-all-year/embed/v4?eid=AQAAAB7Xr1m7ul8A" width="100%" height="300" frameborder="0" scrolling="no"></iframe></p>
<div id="themify_builder_content-912466" data-postid="912466" class="themify_builder_content themify_builder_content-912466 themify_builder themify_builder_front">

	</div>
<!-- /themify_builder_content --></div><!-- .entry-content --><footer class="entry-utility entry-utility-below entry-meta">Filed Under: <a href="http://www.tykellyandchuck.com/category/blog-in-case-you-missed-it/" rel="category tag">Blog - In Case You Missed It</a>, <a href="http://www.tykellyandchuck.com/category/blogs/" rel="category tag">Blogs</a></footer><!-- .entry-utility --></article><!-- #post-912466 --></div>
</div><!-- .block-content -->

</div><!-- #block-130 -->

</section><!-- .column -->

<section class="column column-2 grid-left-0 grid-width-8">
<div id="block-34" class="300x250-ad-1 block block-type-custom-code block-fluid-height responsive-block-hiding-device-smartphones block-mirrored block-mirroring-bgz5499e7ebd2120 block-original-65" data-alias="300x250 Ad 1">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-0'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-0'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-34 -->
<div id="block-38" class="sweet-deals-ad block block-type-custom-code block-fluid-height responsive-block-hiding-device-smartphones block-mirrored block-mirroring-bqk5499e7ebd6bb4 block-original-68" data-alias="Sweet Deals Ad">
<div class="block-content">
<a href="#"><img src="/wp-content/uploads/sites/530/2014/10/sweetdeals.png"></a>
</div><!-- .block-content -->

</div><!-- #block-38 -->
<div id="block-36" class="vip-club-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-b6c5499e7ebd52a8 block-original-67" data-alias="VIP Club Ad">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-7'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-7'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-36 -->
<div id="block-48" class="facebook block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bz65499e7ebe4589 block-original-bge55e5dbb81fec5" data-alias="Facebook Widget">
<div class="block-content">
<iframe src="//www.facebook.com/plugins/likebox.php?href=https://www.facebook.com/TyKellyandChuck&amp;width=300&amp;height=448&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:448px; background: #fff;" allowtransparency="true"></iframe>
</div><!-- .block-content -->

</div><!-- #block-48 -->
<div id="block-40" class="blogs block block-type-content block-fluid-height block-mirrored block-mirroring-bji5499e7ebd999f block-original-70" data-alias="Interviews">
<div class="block-content">
<h1 class="block-title"><span>Interviews</span></h1><div class="loop">

<div class="entry-row">

<article id="post-922788" class="post-922788 post type-post status-publish format-standard has-post-thumbnail hentry category-blog-in-case-you-missed-it category-blogs category-interviews author-gjohnson alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.tykellyandchuck.com/2018/02/16/kelsea-ballerini-tells-what-she-knows-about-presidents-day-describes-having-the-flu-while-performing-more/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/530/2018/02/16065344/KB_TKC1.jpg#aqua_resizer_image_not_local" alt="Kelsea Ballerini Tells What She Knows About President&#8217;s Day, Describes Having the Flu While Performing &#038; More" width="326" height="130.4" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/2018/02/16/kelsea-ballerini-tells-what-she-knows-about-presidents-day-describes-having-the-flu-while-performing-more/" title="Kelsea Ballerini Tells What She Knows About President&#8217;s Day, Describes Having the Flu While Performing &#038; More" rel="bookmark">Kelsea Ballerini Tells What She Knows About President&#8217;s Day, Describes Having the Flu While Performing &#038; More</a></h2></header></article><!-- #post-922788 --><article id="post-921345" class="post-921345 post type-post status-publish format-standard has-post-thumbnail hentry category-blog-in-case-you-missed-it category-blogs category-interviews author-gjohnson custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.tykellyandchuck.com/2018/02/14/maren-morris-talks-grammys-nashville-bryan-the-web-guys-style-more/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/530/2018/01/08153135/TKC_Maren.jpg#aqua_resizer_image_not_local" alt="Maren Morris Talks Wedding, Proposal, Moving to Nashville, &#038; More" width="326" height="130.4" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/2018/02/14/maren-morris-talks-grammys-nashville-bryan-the-web-guys-style-more/" title="Maren Morris Talks Wedding, Proposal, Moving to Nashville, &#038; More" rel="bookmark">Maren Morris Talks Wedding, Proposal, Moving to Nashville, &#038; More</a></h2></header></article><!-- #post-921345 -->

</div><!-- .entry-row -->



<div class="entry-row">

<article id="post-921996" class="post-921996 post type-post status-publish format-standard has-post-thumbnail hentry category-blog-in-case-you-missed-it category-blogs category-interviews author-gjohnson alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.tykellyandchuck.com/2018/01/26/jason-aldean-announces-new-album-rearview-town-new-single-you-make-it-easy-talks-album-influence-hitting-the-road-after-vegas-more/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/530/2018/01/26055114/TKC-JA.jpg#aqua_resizer_image_not_local" alt="Jason Aldean Announces New Album &#8216;Rearview Town,&#8221; New Single &#8220;You Make It Easy,&#8221; Talks Album Influence, Hitting the Road After Vegas &#038; MORE" width="326" height="130.4" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/2018/01/26/jason-aldean-announces-new-album-rearview-town-new-single-you-make-it-easy-talks-album-influence-hitting-the-road-after-vegas-more/" title="Jason Aldean Announces New Album &#8216;Rearview Town,&#8221; New Single &#8220;You Make It Easy,&#8221; Talks Album Influence, Hitting the Road After Vegas &#038; MORE" rel="bookmark">Jason Aldean Announces New Album &#8216;Rearview Town,&#8221; New Single &#8220;You Make It Easy,&#8221; Talks Album Influence, Hitting the Road After Vegas &#038; MORE</a></h2></header></article><!-- #post-921996 --><article id="post-921901" class="post-921901 post type-post status-publish format-standard has-post-thumbnail hentry category-blog-in-case-you-missed-it category-blogs category-interviews author-gjohnson custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.tykellyandchuck.com/2018/01/24/dierks-bentley-raves-about-whiskey-row-opening-in-nashville-new-tour-the-country-music-community-more/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/530/2018/01/24051227/TKC_Dierks_SMALL.jpg#aqua_resizer_image_not_local" alt="Dierks Bentley Raves About Whiskey Row Opening in Nashville, New Tour, the Country Music Community &#038; MORE" width="326" height="130.4" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/2018/01/24/dierks-bentley-raves-about-whiskey-row-opening-in-nashville-new-tour-the-country-music-community-more/" title="Dierks Bentley Raves About Whiskey Row Opening in Nashville, New Tour, the Country Music Community &#038; MORE" rel="bookmark">Dierks Bentley Raves About Whiskey Row Opening in Nashville, New Tour, the Country Music Community &#038; MORE</a></h2></header></article><!-- #post-921901 -->

</div><!-- .entry-row -->

</div>
</div><!-- .block-content -->

</div><!-- #block-40 -->
<div id="block-49" class="headlines block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bux5499e7ebe5e0a block-original-b6f55e5dbb823478" data-alias="Twitter Widget">
<div class="block-content">
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/AmericasMorning" data-widget-id="580073081449893888">Tweets by @AmericasMorning</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div><!-- .block-content -->

</div><!-- #block-49 -->
<div id="block-42" class="facebook-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bxz5499e7ebdb200 block-original-71" data-alias="Facebook Ad">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-8'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-8'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-42 -->
<div id="block-43" class="headlines block block-type-content block-fluid-height block-mirrored block-mirroring-bch5499e7ebdc8c7 block-original-72" data-alias="Music news">
<div class="block-content">
<h1 class="block-title"><span>Headlines</span></h1><div class="loop">

<div class="entry-row">

<article id="post-922481" class="post-922481 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/janson-receives-opry-invite/" title="Janson receives Opry invite" rel="bookmark">Janson receives Opry invite</a></h2></header></article><!-- #post-922481 --><article id="post-922489" class="post-922489 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/shenandoah-gets-reloaded/" title="Shenandoah gets &#8220;Reloaded&#8221;" rel="bookmark">Shenandoah gets &#8220;Reloaded&#8221;</a></h2></header></article><!-- #post-922489 -->

</div><!-- .entry-row -->



<div class="entry-row">

<article id="post-922491" class="post-922491 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/high-valley-goes-acoustic/" title="High Valley goes acoustic" rel="bookmark">High Valley goes acoustic</a></h2></header></article><!-- #post-922491 --><article id="post-922483" class="post-922483 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/montgomery-gentry-releases-new-album/" title="Montgomery Gentry releases new album" rel="bookmark">Montgomery Gentry releases new album</a></h2></header></article><!-- #post-922483 -->

</div><!-- .entry-row -->



<div class="entry-row">

<article id="post-922490" class="post-922490 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/hedley-announces-third-man-debut/" title="Hedley announces Third Man debut" rel="bookmark">Hedley announces Third Man debut</a></h2></header></article><!-- #post-922490 --><article id="post-922431" class="post-922431 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-dell-news-music-country custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.tykellyandchuck.com/news/adkins-embarks-on-tour/" title="Adkins embarks on tour" rel="bookmark">Adkins embarks on tour</a></h2></header></article><!-- #post-922431 -->

</div><!-- .entry-row -->

</div>
</div><!-- .block-content -->

</div><!-- #block-43 -->
<div id="block-44" class="twitter-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bm65499e7ebde2f1 block-original-73" data-alias="Twitter Ad">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-9'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-9'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-44 -->
<div id="block-46" class="300x250-ad-2 block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bll5499e7ebe1218 block-original-79" data-alias="300x250 Ad 2">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-3'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-3'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-46 -->

</section><!-- .column -->

</section><!-- .row -->


</div><!-- .grid-container -->

</div><!-- .wrapper -->

<div id="wrapper-50" class="wrapper wrapper-fluid wrapper-fixed-grid grid-fluid-24-32-10 responsive-grid wrapper-mirroring-10 wrapper-last wrapper-footer" data-alias="Wrapper Footer">

<div class="grid-container clearfix">

<section class="row row-1">

<section class="column column-1 grid-left-0 grid-width-6">
<nav id="block-50" class="footer-nav block block-type-navigation block-fluid-height" data-alias="Footer Navigation" itemscope="" itemtype="http://schema.org/SiteNavigationElement">
<div class="block-content">
<div class="nav-vertical nav-align-left"><ul id="menu-footer-navigation" class="menu"><li id="menu-item-340491" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-340491"><a href="/1111/11/11/privacy-policy">Privacy Policy</a></li>
<li id="menu-item-340494" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-340494"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-340497" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-340497"><a href="/1111/11/11/contest-rules">Contest Rules</a></li>
<li id="menu-item-137" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-137"><a href="http://www.tykellyandchuck.com/advertise-with-us/">Advertise With Us</a></li>
<li id="menu-item-139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="http://www.tykellyandchuck.com/station-information/">Station Information</a></li>
<li id="menu-item-141" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-141"><a href="http://www.cumulus.com/careers/">Employment Opportunities</a></li>
<li id="menu-item-920087" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-920087"><a target="_blank" href="https://www.cumulus.com">Cumulus Media Corporate</a></li>
</ul></div><!-- .nav-vertical nav-align-left -->
</div><!-- .block-content -->

</nav><!-- #block-50 -->
<div id="block-bz755f19d90524b6" class="block block-type-custom-code block-fluid-height" data-alias="Wallpaper Ad">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-16'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-16'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-bz755f19d90524b6 -->

</section><!-- .column -->

<section class="column column-2 grid-left-0 grid-width-18">
<div id="block-51" class="728x90-ad-2 block block-type-custom-code block-fluid-height" data-alias="728x90 Ad 2">
<div class="block-content">
<div class="footer-728x90-ad" align="right">
<div id='div-gpt-ad-1418849849333-2'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-2'); });
</script>
</div>
</div>

</div><!-- .block-content -->

</div><!-- #block-51 -->
<footer id="block-52" class="copyright block block-type-footer block-fluid-height" data-alias="Copyright" itemscope="" itemtype="http://schema.org/WPFooter">
<div class="block-content">

<div class="footer-container">

<div class="footer">
<p class="copyright footer-copyright">Copyright Cumulus Media / Cumulus Media is an equal opportunity employer / AA</p><p class="footer-responsive-grid-link-container footer-responsive-grid-link-disable-container"><a href="http://www.tykellyandchuck.com/2017/08/28/hurricane-harvey-relief-2/?full-site=true" rel="nofollow" class="footer-responsive-grid-link footer-responsive-grid-disable footer-link">View Full Site</a></p>
</div><!-- .footer -->
</div><!-- .footer-container -->
</div><!-- .block-content -->

</footer><!-- #block-52 -->

</section><!-- .column -->

</section><!-- .row -->


</div><!-- .grid-container -->

</div><!-- .wrapper -->



<script>_AMP.theme.init();</script>
<link rel='stylesheet' id='media_library_assistant-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/media-library-assistant/includes/../css/prettyPhoto.css?ver=1.61' type='text/css' media='all' />
<link rel='stylesheet' id='media_library_assistant-widget-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/media-library-assistant/includes/../css/widget.css?ver=1.61' type='text/css' media='all' />
<link rel='stylesheet' id='amp-polls-plugin-styles-css'  href='http://www.tykellyandchuck.com/wp-content/plugins/amp-polls/css/widget.css?ver=4.7.3' type='text/css' media='all' />
<script type='text/javascript'>
/* <![CDATA[ */
var themify_vars = {"version":"1.9.6","url":"http:\/\/www.tykellyandchuck.com\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.tykellyandchuck.com\/wp-includes\/","isCached":null};
var tbLocalScript = {"isAnimationActive":"1","isParallaxActive":"1","isParallaxScrollActive":"1","animationInviewSelectors":[".module.wow",".themify_builder_content .themify_builder_row.wow",".module_row.wow",".builder-posts-wrap > .post.wow",".fly-in > .post",".fly-in .row_inner > .tb-column",".fade-in > .post",".fade-in .row_inner > .tb-column",".slide-up > .post",".slide-up .row_inner > .tb-column"],"createAnimationSelectors":[],"backgroundSlider":{"autoplay":5000,"speed":2000},"animationOffset":"100","videoPoster":"http:\/\/www.tykellyandchuck.com\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.tykellyandchuck.com\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.tykellyandchuck.com\/wp-content\/plugins\/themify-builder\/themify","version":"1.9.6","fullwidth_support":"","fullwidth_container":"body","loadScrollHighlight":"1"};
var themifyScript = {"lightbox":{"lightboxSelector":".themify_lightbox","lightboxOn":true,"lightboxContentImages":false,"lightboxContentImagesSelector":"","theme":"pp_default","social_tools":false,"allow_resize":true,"show_title":false,"overlay_gallery":false,"screenWidthNoLightbox":600,"deeplinking":false,"contentImagesAreas":"","gallerySelector":".gallery-icon > a[href$=jpg],.gallery-icon > a[href$=gif],.gallery-icon > a[href$=png],.gallery-icon > a[href$=JPG],.gallery-icon > a[href$=GIF],.gallery-icon > a[href$=PNG],.gallery-icon > a[href$=jpeg],.gallery-icon > a[href$=JPEG]","lightboxGalleryOn":true},"lightboxContext":"body"};
var tbScrollHighlight = {"fixedHeaderSelector":"","speed":"900","navigation":"#main-nav","scrollOffset":"0"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/themify-builder/themify/js/main.js?ver=1.9.6'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var mejsL10n = {"language":"en-US","strings":{"Close":"Close","Fullscreen":"Fullscreen","Turn off Fullscreen":"Turn off Fullscreen","Go Fullscreen":"Go Fullscreen","Download File":"Download File","Download Video":"Download Video","Play":"Play","Pause":"Pause","Captions\/Subtitles":"Captions\/Subtitles","None":"None","Time Slider":"Time Slider","Skip back %1 seconds":"Skip back %1 seconds","Video Player":"Video Player","Audio Player":"Audio Player","Volume Slider":"Volume Slider","Mute Toggle":"Mute Toggle","Unmute":"Unmute","Mute":"Mute","Use Up\/Down Arrow keys to increase or decrease volume.":"Use Up\/Down Arrow keys to increase or decrease volume.","Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds.":"Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds."}};
var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/media-library-assistant/includes/../js/jquery.prettyPhoto.js?ver=1.61'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/media-library-assistant/includes/../js/widget-front-end.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.tykellyandchuck.com/wp-content/plugins/amp-polls/js/widget-front-end.js?ver=4.7.3'></script>
		<script type="text/javascript">
			if ('object' === typeof tbLocalScript) {
				tbLocalScript.transitionSelectors = ".js.csstransitions .module.wow, .js.csstransitions .themify_builder_content .themify_builder_row.wow, .js.csstransitions .module_row.wow, .js.csstransitions .builder-posts-wrap > .post.wow, .js.csstransitions .fly-in > .post, .js.csstransitions .fly-in .row_inner > .tb-column, .js.csstransitions .fade-in > .post, .js.csstransitions .fade-in .row_inner > .tb-column, .js.csstransitions .slide-up > .post, .js.csstransitions .slide-up .row_inner > .tb-column";
			}
		</script>
		

</div><!-- #whitewrap -->

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<script type="text/javascript">
//<![CDATA[
(function() {
var _analytics_scr = document.createElement('script');
_analytics_scr.type = 'text/javascript'; _analytics_scr.async = true; _analytics_scr.src = '/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=1224561852';
var _analytics_elem = document.getElementsByTagName('script')[0]; _analytics_elem.parentNode.insertBefore(_analytics_scr, _analytics_elem);
})();
// ]]>
</script></body>


</html>
<!--
Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/

Object Caching 2581/2696 objects using memcache
Page Caching using memcache
Database Caching 58/79 queries in 0.312 seconds using memcache

Served from: www.1460wrad.com @ 2018-02-16 23:14:26 by W3 Total Cache
-->