<!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>Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief | WLWI-FM</title><link rel='dns-prefetch' href='//www.wlwi.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.wlwi.com/2017/09/12/everything-you-need-to-know-about-tonights-hand-in-hand-benefit-concert-for-hurricane-relief/" />
		<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.wlwi.com\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.wlwi.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.wlwi.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.wlwi.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.wlwi.com/wp-content/uploads/sites/981/headway/cache/general-b6bbda6.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-template-3-css'  href='http://www.wlwi.com/wp-content/uploads/sites/981/headway/cache/layout-template-3-2761b5d.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.wlwi.com/wp-content/uploads/sites/981/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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.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.wlwi.com/wp-content/themes/Headway-AMP_CMS/style.css" />

<!-- Scripts -->
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/themes/headway/library/media/js/jquery.hoverintent.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/themes/headway/library/blocks/navigation/js/jquery.superfish.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/themes/headway/library/blocks/navigation/js/selectnav.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/uploads/sites/981/headway/cache/block-dynamic-js-layout-template-3-3f428ce.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/shared/js/bxslider/jquery.bxslider.min.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-promo-reel/includes/../js/widget.js?ver=1.4.0'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/themes/headway/library/media/js/jquery.fitvids.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/uploads/sites/981/headway/cache/responsive-grid-js-e6e6939.js?ver=4.7.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _ampconfig = {"site_url":"http:\/\/www.wlwi.com","site_id":"981","tz":"America\/Chicago","tz_offset":"-6","ts":"1512399620","blog_name":"WLWI-FM","client_name":"cumuluspro","user_ID":"","ts_offset":"1518557882","version":"2.45.0.2","env":"prod","settings":{"tenant_id":"see_10340","vidible_company_key":"06125e55709b3c4ffdfe3c3f8a9ed8bd","client_name":false,"nielsen_provider":"cumulus","promoreel_priority":true}};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/shared/js/amp-common.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-breaking-news/public/js/public.js?ver=0.2.3'></script>
<script type='text/javascript' src='http://www.wlwi.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.wlwi.com/wp-content/plugins/amp-events/js/calendar.js?ver=1.1.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-events/js/public.js?ver=1.1.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-feeds/js/jquery.totemticker.min.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/jquery/ui/widget.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/jquery/ui/tabs.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-feeds/js/amp-feed.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-feeds/js/public.js?ver=0.3.8'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-feeds/js/date.js?ver=0.3.8'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var _amplistenlive = {"blog_id":"981","callsign":"","mount_name":"WLWIFM","provider":"stream_the_world","gmt_offset":"-21600"};
/* ]]> */
</script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/amp-listen-live/public/assets/js/public.js?ver=1.4.4'></script>
<script type='text/javascript' src='http://www.wlwi.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_10340/see.js?ver=1.3.0'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/themes/Headway-AMP_CMS/js/amp-theme.js?ver=1.1.5'></script>

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

<!--[if lt IE 8]>
<script src="http://www.wlwi.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() {

var leaderboardSizeMap = googletag.sizeMapping()
 .addSize([970, 0], [[728, 90], [970, 90]])
 .addSize([750,0], [728,90])
 .addSize([0, 0], [[320, 50], [320, 53]])
 .build();

googletag.defineSlot('/6717/cd.WLWI.FM', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-0').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","mid");
googletag.defineSlot('/6717/cd.WLWI.FM', [[728, 90], [970, 90]], 'div-gpt-ad-1418849849333-1').addService(googletag.pubads())
.defineSizeMapping(leaderboardSizeMap).setCollapseEmptyDiv(true).setTargeting("pos","top");
googletag.defineSlot('/6717/cd.WLWI.FM', [[728, 90], [970, 90]], 'div-gpt-ad-1418849849333-2').addService(googletag.pubads())
.defineSizeMapping(leaderboardSizeMap).setCollapseEmptyDiv(true).setTargeting("pos","bot");
googletag.defineSlot('/6717/cd.WLWI.FM', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-3').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","mid2");
googletag.defineSlot('/6717/cd.WLWI.FM', [[160, 600]], 'div-gpt-ad-1418849849333-4').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","left");
googletag.defineSlot('/6717/cd.WLWI.FM', [[160, 600]], 'div-gpt-ad-1418849849333-5').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","right");
googletag.defineSlot('/6717/cd.WLWI.FM', [[654, 70]], 'div-gpt-ad-1418849849333-6').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","rdioplayer");
googletag.defineSlot('/6717/cd.WLWI.FM', [[300, 100]], 'div-gpt-ad-1418849849333-7').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest1");
googletag.defineSlot('/6717/cd.WLWI.FM', [[300, 100]], 'div-gpt-ad-1418849849333-8').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest2");
googletag.defineSlot('/6717/cd.WLWI.FM', [[300, 100]], 'div-gpt-ad-1418849849333-9').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest3");
googletag.defineSlot('/6717/cd.WLWI.FM', [[100, 51]], 'div-gpt-ad-1418849849333-10').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","rdiobutton");
googletag.defineSlot('/6717/cd.WLWI.FM', [[113, 23]], 'div-gpt-ad-1418849849333-11').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor1");
googletag.defineSlot('/6717/cd.WLWI.FM', [[113, 23]], 'div-gpt-ad-1418849849333-12').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor2");
googletag.defineSlot('/6717/cd.WLWI.FM', [[113, 23]], 'div-gpt-ad-1418849849333-13').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor3");
googletag.defineSlot('/6717/cd.WLWI.FM', [[113, 23]], 'div-gpt-ad-1418849849333-14').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor4");
googletag.defineSlot('/6717/cd.WLWI.FM', [[1, 1]],'div-gpt-ad-1418849849333-16').addService(googletag.pubads())
.setTargeting("pos","wallpaper-ad");
googletag.defineSlot('/6717/cd.wlwi.fm', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-18').setCollapseEmptyDiv(true).addService(googletag.pubads())
.setTargeting("pos","midresponsive");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>

<!--ONESTAT SCRIPTCODE START Embed Player-->
  <script type="text/javascript">
  <!--
  jQuery(document).ready(function(){
    var d=document;
    var sid="wlwi-fm.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");
    }

    var imgTag = '<img border="0" height="0" width="0" id="ONESTAT_TAG" src="' + p + '">'
    jQuery('body').append(imgTag);

  })
  //-->
  </script> 
<!--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-5KRBS3');</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="WLWI-FM &raquo; Feed" href="http://www.wlwi.com/feed/" />
<link rel='shortlink' href='http://www.wlwi.com/?p=765334' />

				<!-- equalcolumn-ie-fix.js -->
				<!--[if IE 9]>
					<script src="http://www.wlwi.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.wlwi.com/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.wlwi.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', 'WLWIFM');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  Country', 'Market  Montgomery AL', 'Format Country New']);
      googletag.pubads().setTargeting('cms-ptitle', 'Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief');
      googletag.pubads().setTargeting('cms-pcat', 'NCD News');
  });
</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="WLWI-FM"/>
  <meta property="og:title" content="Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief"/>
  <meta property="og:url" content="http://www.wlwi.com/2017/09/12/everything-you-need-to-know-about-tonights-hand-in-hand-benefit-concert-for-hurricane-relief/"/>
  <meta property="og:type" content="article"/>
  <meta property="og:description" content="ABC, CBS, Fox and NBC will team up for a multi-network telethon to benefit those affected by Hurricane Harvey and Hurricane Irma tonight (Sept. 12).

The hour-long telethon—Hand in Hand: A Benefit for Hurricane Relief—will be staged live from Nashville’s Grand Ole Opry, Times Square in New York an"/>
  <meta property="og:image" content="http://images.tritondigitalcms.com/6616/sites/1446/2017/09/12105051/Hand-in-Hand-2017-Nash-Country-Daily-Everything-You-Need-To-Know.jpg"/>
  <meta property="article:published_time" content="2017-09-12T11:03:21+00:00"/>
  <meta property="article:modified_time" content="2017-09-12T17:29:56+00:00" />
  <meta property="og:updated_time" content="2017-09-12T17:29:56+00:00" />
  <meta property="article:section" content="NCD News"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief"/>
  <meta itemprop="description" content="ABC, CBS, Fox and NBC will team up for a multi-network telethon to benefit those affected by Hurricane Harvey and Hurricane Irma tonight (Sept. 12).

The hour-long telethon—Hand in Hand: A Benefit for Hurricane Relief—will be staged live from Nashville’s Grand Ole Opry, Times Square in New York an"/>
  <meta itemprop="image" content="http://images.tritondigitalcms.com/6616/sites/1446/2017/09/12105051/Hand-in-Hand-2017-Nash-Country-Daily-Everything-You-Need-To-Know.jpg"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief"/>
  <meta name="twitter:url" content="http://www.wlwi.com/2017/09/12/everything-you-need-to-know-about-tonights-hand-in-hand-benefit-concert-for-hurricane-relief/"/>
  <meta name="twitter:description" content="ABC, CBS, Fox and NBC will team up for a multi-network telethon to benefit those affected by Hurricane Harvey and Hurricane Irma tonight (Sept. 12).

The hour-long telethon—Hand in Hand: A Benefit for Hurricane Relief—will be staged live from Nashville’s Grand Ole Opry, Times Square in New York an"/>
  <meta name="twitter:image" content="http://images.tritondigitalcms.com/6616/sites/1446/2017/09/12105051/Hand-in-Hand-2017-Nash-Country-Daily-Everything-You-Need-To-Know.jpg"/>
  <meta name="twitter:card" content="summary_large_image"/>
  <meta name="twitter:creator" content="@@TheJimCasey"/>
 <!-- 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-765334 single-format-standard custom responsive-grid-enabled responsive-grid-active layout-single-post-765334 layout-using-template-3" itemscope itemtype="http://schema.org/WebPage">


<div id="whitewrap">


<div id="wrapper-wab58a5c4bc2585e" 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-3">
<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://cumulus.pro.poolb.tritondigitalcms.com/wlwi-fm/wp-content/uploads/sites/981/2015/05/site-logo.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

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

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

<section class="column column-2 grid-left-0 grid-width-21">
<div id="block-bbi5a837ec290234" class="block block-type-custom-code block-fluid-height" data-alias="Empty Spacer">
<div class="block-content">
&nbsp;
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-7 grid-left-0">
<aside id="block-29" class="on-air block block-type-widget-area block-fluid-height" data-alias="Home - On Air Now" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<ul class="widget-area"><div class="amp-onair-widget" id="amp_onair_widget-2"
	data-title-now=""
	data-title-upcoming=""
	data-title=""
	data-type="nowplaying"
	data-change-minutes="5"
	data-change="0"
	data-toggle-time="10"
	data-fields="image,timeslot"
	data-ajaxurl="http://www.wlwi.com/wp-admin/admin-ajax.php"
	data-updateurl="http://www.wlwi.com/shows/feed/?type=json"
	data-memcached="1"
	data-expiration="1518566400">
	
<div class="amp-onair-show nowplaying" >

    <div class="amp-onair-widget-title js-widget-title"></div>

        <div class="amp-onair-show-image">
                    <img class="js-image amp-onair-show-image-img" src="http://www.wlwi.com/wp-content/uploads/sites/981/2015/06/Gh0nOWw8.png"  />
            </div>
        
    <div class="amp-onair-show-title">
            <span class="js-title">NASH NIGHTS LIVE w/ SHAWN AND ELAINA</span>
        </div>
    
        <div class="amp-onair-show-timeslot js-timeslot" >7:00 p.m. - 12:00 a.m.</div>
        
        
    
</div>
</div></ul>
</div><!-- .block-content -->

</aside><!-- #block-29 -->

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

<section class="sub-column sub-column-2 column column-2 grid-width-14 grid-left-0">
<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="#"><img src="http://www.wlwi.com/wp-content/uploads/sites/981/2016/03/listen-live.png" title="Listen Live!!" class="img-1"  /></a></li><li><a href="/listen-live-with-alexa"><img src="http://images.tritondigitalcms.com/6616/sites/981/2018/01/03124837/Alexa-Social-Logo-MUSIC.png" alt="Alexa" class="img-2"  /></a></li><li><a href="https://www.facebook.com/I92WLWI" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wlwi-fm/wp-content/uploads/sites/981/2014/10/facebook.png" title="Like us on Facebook!" class="img-3"  /></a></li><li><a href="https://twitter.com/i92wlwi" target="_blank"><img src="http://www.wlwi.com/wp-content/uploads/sites/981/2014/10/twitter.png" title="Twitter" class="img-4"  /></a></li><li><a href="http://wlwi.listenernetwork.com/" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wlwi-fm/wp-content/uploads/sites/981/2015/01/cumulus-vip.png" title="VIP" class="img-5"  /></a></li></ul></div><!-- .social-icons-container -->
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-1 column column-1 grid-width-18 grid-left-0">
<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-658268" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-has-children menu-item-658268"><a href="http://www.wlwi.com/shows/the-rick-and-bubba-show/">Rick and Bubba</a>
<ul class="sub-menu">
	<li id="menu-item-658661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658661"><a href="http://www.rickandbubba.com/staff.php">Cast</a></li>
	<li id="menu-item-658688" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658688"><a href="http://www.rickandbubba.com/tv.php">Watch Live</a></li>
	<li id="menu-item-658673" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658673"><a href="http://www.rickandbubba.com/contests.php">Contests</a></li>
	<li id="menu-item-658685" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658685"><a href="http://xtremeclub.rickandbubba.com/">Xtreme Club</a></li>
	<li id="menu-item-658709" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658709"><a href="https://www.facebook.com/RickAndBubba/">Facebook</a></li>
	<li id="menu-item-658703" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658703"><a href="https://twitter.com/rickandbubba">Twitter</a></li>
</ul>
</li>
<li id="menu-item-119" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-119"><a href="http://www.wlwi.com/shows/">Shows</a>
<ul class="sub-menu">
	<li id="menu-item-698481" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-698481"><a href="http://www.rickandbubba.com/">Rick and Bubba</a></li>
	<li id="menu-item-658274" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-658274"><a href="http://www.wlwi.com/shows/andi-scott-3/">Andi Scott</a></li>
	<li id="menu-item-698478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-698478"><a href="http://www.wlwi.com/?p=671802">Greg Thomas</a></li>
	<li id="menu-item-589592" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-589592"><a href="http://www.wlwi.com/nash-nights-live/">Nash Nights Live</a></li>
	<li id="menu-item-698472" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-698472"><a href="http://www.wlwi.com/?p=676752">Blair Garner Show</a></li>
	<li id="menu-item-658277" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-658277"><a href="http://www.wlwi.com/shows/grand-old-gospel-time-w-bill-roberts/">Grand Old Gospel Time</a></li>
	<li id="menu-item-658280" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-658280"><a href="http://www.wlwi.com/shows/zmax-racing-country/">ZMax Racing Country</a></li>
	<li id="menu-item-658283" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-658283"><a href="http://www.wlwi.com/shows/ben-brown-2/">Ben Brown</a></li>
	<li id="menu-item-658289" class="menu-item menu-item-type-post_type menu-item-object-amp-onair-show menu-item-658289"><a href="http://www.wlwi.com/shows/american-country-countdown-with-kix-brooks-2/">American Country Countdown</a></li>
</ul>
</li>
<li id="menu-item-698487" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-698487"><a href="http://www.wlwi.com/category/contests/">Contests</a></li>
<li id="menu-item-125" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-125"><a href="http://www.wlwi.com/news/">Local</a>
<ul class="sub-menu">
	<li id="menu-item-658637" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658637"><a href="http://www.alabamanews.net/news/">Alabama News Network &#8211; News</a></li>
	<li id="menu-item-658640" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658640"><a href="http://www.alabamanews.net/weather/">Alabama News Network &#8211; Weather</a></li>
	<li id="menu-item-698466" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-698466"><a href="http://www.alabamanews.net/sports/">Alabama News Network &#8211; Sports</a></li>
	<li id="menu-item-658646" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658646"><a href="http://visitingmontgomery.com/what-is-cool-this-weekend">Capital Cool</a></li>
	<li id="menu-item-658655" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658655"><a href="http://www.milb.com/index.jsp?sid=t421">Biscuits Baseball</a></li>
	<li id="menu-item-658697" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-658697"><a href="http://www.montgomeryal.gov/">City of Montgomery</a></li>
</ul>
</li>
<li id="menu-item-117" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-117"><a href="http://montgomery.sweetdealscumulus.com/">Sweet Deals</a></li>
<li id="menu-item-675630" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-675630"><a href="http://wlwi-fm.mygameroom.com">Games</a></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.wlwi.com/features/">Connect</a>
<ul class="sub-menu">
	<li id="menu-item-569741" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-569741"><a href="http://www.wlwi.com/nash-country-daily/">NASH Country Daily</a></li>
	<li id="menu-item-658295" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-658295"><a href="http://www.wlwi.com/advertise-with-us/">Advertise With Us</a></li>
	<li id="menu-item-658298" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-658298"><a href="http://www.wlwi.com/station-information/">Station Information</a></li>
</ul>
</li>
</ul></div><!-- .nav-horizontal nav-align-left -->
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-3 grid-left-0">
<nav id="block-33" class="nav-search 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-left nav-search-active nav-search-position-left"><div class="nav-search">
		<form method="get" id="searchform" action="http://www.wlwi.com/">
			<label for="s" class="assistive-text">Search</label>
			<input type="text" class="field" name="s" id="s" value="Search" onclick="if(this.value=='Search')this.value='';" onblur="if(this.value=='')this.value='Search';" />
			<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
		</form>
	</div></div><!-- .nav-horizontal nav-align-left nav-search-active nav-search-position-left -->
</div><!-- .block-content -->

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

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

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

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


<section class="row row-3">

<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-wg758a5c4bc2792f" 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-bw358a5c4bc6dbcf" class="block block-type-content block-fluid-height" data-alias="">
<div class="block-content">
<div class="loop"><article id="post-765334" class="post-765334 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news tag-benefit-concert tag-blake-shelton tag-brad-paisley tag-brett-eldredge tag-brothers-osborne tag-charles-esten tag-chris-young tag-cole-swindell tag-connie-britton tag-dan-shay tag-dierks-bentley tag-faith-hill tag-george-strait tag-grand-ole-opry tag-hand-in-hand tag-hurricane-harvey tag-hurricane-irma tag-hurricane-relief tag-jamie-foxx tag-jon-pardi tag-kip-moore tag-luke-bryan tag-michael-strahan tag-old-dominion tag-rascal-flatts tag-reese-witherspoon tag-tim-mcgraw tag-trace-adkins author-jcasey " itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wlwi.com/2017/09/12/everything-you-need-to-know-about-tonights-hand-in-hand-benefit-concert-for-hurricane-relief/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/1446/2017/09/12105051/Hand-in-Hand-2017-Nash-Country-Daily-Everything-You-Need-To-Know.jpg" alt="Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h1 class="entry-title" itemprop="headline">Everything You Need to Know About Tonight’s “Hand in Hand” Benefit Concert for Hurricane Relief</h1><div class="entry-meta entry-meta-above">by <span class="entry-author vcard" itemprop="author" itemscope itemtype="http://schema.org/Person"><a class="author-link fn nickname url" href="http://www.wlwi.com/author/jcasey/" title="View all posts by Jim Casey | @TheJimCasey" itemprop="url"><span class="entry-author-name" itemprop="name">Jim Casey | @TheJimCasey</span></a></span> &nbsp;|&nbsp; <time class="entry-date published updated" itemprop="datePublished" datetime="2017-09-12T11:03:21+00:00">September 12, 2017</time></div><!-- .entry-meta --></header><div class="entry-content" itemprop="text"><p>ABC, CBS, Fox and NBC will team up for a multi-network telethon to benefit those affected by Hurricane Harvey and Hurricane Irma tonight (Sept. 12).</p>
<p>The hour-long telethon—Hand in Hand: A Benefit for Hurricane Relief—will be staged live from Nashville’s Grand Ole Opry, Times Square in New York and the Universal Studios lot in Los Angeles.</p>
<p>Here&#8217;s everything you need to know about the event, including time, channels, country performers, celebrities, how to donate and more.</p>
<p><strong>Time</strong></p>
<ul>
<li>8 p.m. ET / 7 p.m. CT (Live)</li>
<li>8 p.m. PT (Re-Air)</li>
</ul>
<p><strong>TV Channels</strong></p>
<ul>
<li>ABC</li>
<li>BET</li>
<li>Bravo</li>
<li>CBS</li>
<li>CMT</li>
<li>E!</li>
<li>FOX</li>
<li>HBO</li>
<li>HBO Latino</li>
<li>MTV</li>
<li>MTV2</li>
<li>MTV Live</li>
<li>MTV Classic</li>
<li>NBC</li>
<li>Oxygen</li>
</ul>
<p><strong>Live Stream</strong></p>
<ul>
<li><a href="https://www.aol.com/">AOL.com</a></li>
<li><a href="http://apple.com">Apple</a></li>
<li><a href="https://www.facebook.com/attn/videos/1495590483809739/">Facebook</a></li>
<li><a href="http://www.huffingtonpost.com/">HuffPost</a></li>
<li><a href="https://twitter.com/i/live/905193610244530176/">Twitter</a></li>
<li><a href="https://www.youtube.com/watch?v=4MkC65emkG4">YouTube</a></li>
<li><a href="https://www.yahoo.com/">Yahoo.com</a></li>
</ul>
<p><strong>Radio</strong></p>
<ul>
<li>Cumulus/Westwood One will feature a partial simulcast of <em>Hand in Hand</em> on<em> <span class="xn-location">NASH</span> Nights Live</em> and the <em>Zach Sang Show</em> from <span class="xn-chron">8 p.m. to 9 p.m.</span> in all time zones. Additionally, Westwood One Affiliates will have access to the two-hour live broadcast of <span class="xn-person">George Strait&#8217;s</span> Hurricane Harvey benefit concert live from The Majestic Theatre in <span class="xn-location">San Antonio, TX.</span></li>
<li>iHeartMedia will broadcast the Hand in Hand across more than 150 radio stations.</li>
<li>SiriusXM will be carrying the audio of <i>Hand in Hand </i>on channels 96, 102 and 108.</li>
</ul>
<p><strong>Hosts</strong></p>
<ul>
<li><b>Blake Shelton</b> and <b>Reese Witherspoon</b> (Nashville)</li>
<li><b>Michael Strahan</b> (New York)</li>
<li><b>Jamie Foxx</b> (Los Angeles)</li>
</ul>
<p><strong>Country Stars Performing or Appearing</strong></p>
<ul>
<li>Trace Adkins</li>
<li>Dierks Bentley</li>
<li>Connie Britton</li>
<li>Luke Bryan</li>
<li>Old Dominion</li>
<li>Brett Eldredge</li>
<li>Charles Esten</li>
<li>Sara Evans</li>
<li>Rascal Flatts</li>
<li>Faith Hill</li>
<li>Tim McGraw</li>
<li>Kip Moore</li>
<li>Brothers Osborne</li>
<li>Brad Paisley</li>
<li>Jon Pardi</li>
<li>Dan + Shay</li>
<li>Blake Shelton</li>
<li>George Strait</li>
<li>Cole Swindell</li>
<li>Chris Young</li>
</ul>
<p><strong>George Strait Concert</strong></p>
<p>George Strait will conclude the telethon by performing live from his Hurricane Harvey benefit concert at the Majestic Theatre in San Antonio. Miranda Lambert, Chris Stapleton, Lyle Lovett and Robert Earl Keen will join George onstage for the concert benefiting the Rebuild Texas Fund.</p>
<p><strong>How to Donate</strong></p>
<ul>
<li>Call 1-800-258-6000 to donate by credit card (toll free in the US and <span class="xn-location">Canada)</span></li>
<li>Make a <span class="xn-money">$25</span> donation by texting &#8220;GIVE&#8221; to 80077 on mobile phones</li>
<li><a href="https://handinhand2017.com/donate.html">Donate via the web HERE</a></li>
</ul>
<p><strong>100 Percent of the Proceeds Benefit</strong></p>
<ul>
<li>Rebuild Texas Fund</li>
<li>Direct Relief</li>
<li>Feeding Texas</li>
<li>Habitat for Humanity</li>
<li>The Mayor&#8217;s Fund for Hurricane Harvey Relief (administered by the Greater Houston Community Foundation)</li>
<li>Save the Children</li>
<li>United Way of <span class="xn-location">Greater Houston</span></li>
<li>More will be announced to help those affected by Hurricane Irma</li>
</ul>
<p><strong>Additional Celebrities Performing or Appearing</strong></p>
<ul class="o-list-unstyled c-appearances">
<li class="c-appearances__item">Malin Ackerman</li>
<li class="c-appearances__item">Jason Alexander</li>
<li class="c-appearances__item">Lily Aldridge</li>
<li class="c-appearances__item">Anthony Anderson</li>
<li class="c-appearances__item">Beyoncé</li>
<li class="c-appearances__item">The Black Eyed Peas</li>
<li class="c-appearances__item">Bun B</li>
<li class="c-appearances__item">J Balvin</li>
<li class="c-appearances__item">Justin Bieber</li>
<li class="c-appearances__item">Bobby Bones</li>
<li class="c-appearances__item">Julie Bowen</li>
<li class="c-appearances__item">Wayne Brady</li>
<li class="c-appearances__item">Sterling K. Brown</li>
<li class="c-appearances__item">Steve Buscemi</li>
<li class="c-appearances__item">George Clooney</li>
<li class="c-appearances__item">Andy Cohen</li>
<li class="c-appearances__item">Stephen Colbert</li>
<li class="c-appearances__item">Sean “Diddy” Combs</li>
<li class="c-appearances__item">David Copperfield</li>
<li class="c-appearances__item">Chace Crawford</li>
<li class="c-appearances__item">Terry Crews</li>
<li class="c-appearances__item">Billy Crystal</li>
<li class="c-appearances__item">Ellen DeGeneres</li>
<li class="c-appearances__item">Robert De Niro</li>
<li class="c-appearances__item">Leonardo DiCaprio</li>
<li class="c-appearances__item">Drake</li>
<li class="c-appearances__item">Hilary Duff</li>
<li class="c-appearances__item">Jourdan Dunn</li>
<li class="c-appearances__item">Jimmy Fallon</li>
<li class="c-appearances__item">Rascal Flatts</li>
<li class="c-appearances__item">Luis Fonsi</li>
<li class="c-appearances__item">Jamie Foxx</li>
<li class="c-appearances__item">Richard Gere</li>
<li class="c-appearances__item">Josh Gad</li>
<li class="c-appearances__item">Eddie George</li>
<li class="c-appearances__item">Selena Gomez</li>
<li class="c-appearances__item">Amy Grant</li>
<li class="c-appearances__item">Pastor John Gray</li>
<li class="c-appearances__item">Josh Groban</li>
<li class="c-appearances__item">Savannah Guthrie</li>
<li class="c-appearances__item">Tom Hanks</li>
<li class="c-appearances__item">Marcia Gay Harden</li>
<li class="c-appearances__item">Angie Harmon</li>
<li class="c-appearances__item">Taraji P. Henson</li>
<li class="c-appearances__item">Kate Hudson</li>
<li class="c-appearances__item">Dwayne Johnson</li>
<li class="c-appearances__item">Joe Jonas</li>
<li class="c-appearances__item">Catherine Zeta -Jones</li>
<li class="c-appearances__item">Tori Kelly</li>
<li class="c-appearances__item">DJ Khaled</li>
<li class="c-appearances__item">Nicole Kidman</li>
<li class="c-appearances__item">Gayle King</li>
<li class="c-appearances__item">Karlie Kloss</li>
<li class="c-appearances__item">Karolina Kurkova</li>
<li class="c-appearances__item">Matt Lauer</li>
<li class="c-appearances__item">Jay Leno</li>
<li class="c-appearances__item">Zion &amp; Lennox</li>
<li class="c-appearances__item">Kings of Leon</li>
<li class="c-appearances__item">Jared Leto</li>
<li class="c-appearances__item">Eva Longoria</li>
<li class="c-appearances__item">Matthew McConaughey</li>
<li class="c-appearances__item">Eric McCormack</li>
<li class="c-appearances__item">Nicki Minaj</li>
<li class="c-appearances__item">Tracy Morgan</li>
<li class="c-appearances__item">Lupita Nyong’o</li>
<li class="c-appearances__item">Norah O’Donnell</li>
<li class="c-appearances__item">Gerardo Ortiz</li>
<li class="c-appearances__item">Chris Paul</li>
<li class="c-appearances__item">Tyler Perry</li>
<li class="c-appearances__item">Dennis Quaid</li>
<li class="c-appearances__item">Questlove</li>
<li class="c-appearances__item">Jeremy Renner</li>
<li class="c-appearances__item">Julia Roberts</li>
<li class="c-appearances__item">Robin Roberts</li>
<li class="c-appearances__item">Ray Romano</li>
<li class="c-appearances__item">Kelly Rowland</li>
<li class="c-appearances__item">Adam Sandler</li>
<li class="c-appearances__item">Travis Scott</li>
<li class="c-appearances__item">Ryan Seacrest</li>
<li class="c-appearances__item">Maria Shriver</li>
<li class="c-appearances__item">Michael W. Smith</li>
<li class="c-appearances__item">Will Smith</li>
<li class="c-appearances__item">David Spade</li>
<li class="c-appearances__item">Gwen Stefani</li>
<li class="c-appearances__item">Michael Strahan</li>
<li class="c-appearances__item">Barbra Streisand</li>
<li class="c-appearances__item">PK Subban</li>
<li class="c-appearances__item">Wanda Sykes</li>
<li class="c-appearances__item">Miles Teller</li>
<li class="c-appearances__item">T.I.</li>
<li class="c-appearances__item">Timbaland</li>
<li class="c-appearances__item">Justin Timberlake</li>
<li class="c-appearances__item">Chris Tomlin</li>
<li class="c-appearances__item">Sofia Vergara</li>
<li class="c-appearances__item">Kerry Washington</li>
<li class="c-appearances__item">Marlon Wayans</li>
<li class="c-appearances__item">Bruce Willis</li>
<li class="c-appearances__item">Chandra Wilson</li>
<li class="c-appearances__item">Charlie Wilson</li>
<li class="c-appearances__item">Oprah Winfrey</li>
<li class="c-appearances__item">Cece Winans</li>
<li class="c-appearances__item">Rita Wilson</li>
<li class="c-appearances__item">Reese Witherspoon</li>
</ul>
<div id="themify_builder_content-765334" data-postid="765334" class="themify_builder_content themify_builder_content-765334 themify_builder themify_builder_front">

	</div>
<!-- /themify_builder_content --></div><!-- .entry-content --><footer class="entry-utility entry-utility-below entry-meta">written by <span class="entry-author vcard" itemprop="author" itemscope itemtype="http://schema.org/Person"><a class="author-link fn nickname url" href="http://www.wlwi.com/author/jcasey/" title="View all posts by Jim Casey | @TheJimCasey" itemprop="url"><span class="entry-author-name" itemprop="name">Jim Casey | @TheJimCasey</span></a></span> &nbsp;|&nbsp; published <time class="entry-date published updated" itemprop="datePublished" datetime="2017-09-12T11:03:21+00:00">September 12, 2017</time> <time class="entry-time" datetime="2017-09-12T11:03:21+00:00">11:03 am</time> <br>category: <a href="http://www.wlwi.com/category/ncd-news/" rel="category tag">NCD News</a> &nbsp;|&nbsp; related posts: <span class="tag-links" itemprop="keywords"><a href="http://www.wlwi.com/tag/benefit-concert/" rel="tag">Benefit Concert</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/blake-shelton/" rel="tag">blake shelton</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/brad-paisley/" rel="tag">Brad Paisley</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/brett-eldredge/" rel="tag">brett eldredge</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/brothers-osborne/" rel="tag">Brothers Osborne</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/charles-esten/" rel="tag">Charles Esten</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/chris-young/" rel="tag">Chris Young</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/cole-swindell/" rel="tag">cole swindell</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/connie-britton/" rel="tag">Connie Britton</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/dan-shay/" rel="tag">Dan + Shay</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/dierks-bentley/" rel="tag">dierks bentley</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/faith-hill/" rel="tag">Faith Hill</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/george-strait/" rel="tag">George Strait</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/grand-ole-opry/" rel="tag">Grand Ole Opry</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/hand-in-hand/" rel="tag">Hand in Hand</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/hurricane-harvey/" rel="tag">Hurricane Harvey</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/hurricane-irma/" rel="tag">Hurricane Irma</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/hurricane-relief/" rel="tag">hurricane relief</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/jamie-foxx/" rel="tag">Jamie Foxx</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/jon-pardi/" rel="tag">jon pardi</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/kip-moore/" rel="tag">kip moore</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/luke-bryan/" rel="tag">Luke Bryan</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/michael-strahan/" rel="tag">Michael Strahan</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/old-dominion/" rel="tag">old dominion</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/rascal-flatts/" rel="tag">rascal flatts</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/reese-witherspoon/" rel="tag">Reese Witherspoon</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/tim-mcgraw/" rel="tag">tim mcgraw</a><span class="tag-sep">, </span><a href="http://www.wlwi.com/tag/trace-adkins/" rel="tag">Trace Adkins</a></span>
<br><br>
<div align="center">Read more country music news at <a href="http://www.nashcountrydaily.com/" target="_blank">Nash Country Daily</a>!</div></footer><!-- .entry-utility --></article><!-- #post-765334 --></div>
</div><!-- .block-content -->

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

</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-btv58a5c4bc34890" 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-bdg58a5c4bc2b36f" data-alias="Sweet Deals Ad">
<div class="block-content">
<a href="http://montgomery.sweetdealscumulus.com/"><img src="/wp-content/uploads/sites/981/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-b4n58a5c4bc31556" 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-b5u55775642d63a1" class="headlines block block-type-custom-code block-fluid-height block-mirrored block-mirroring-b5u55775642d63a1 block-original-bn458a5c4bc76202" data-alias="Playlist">
<div class="block-content">
<h1 class="block-title"><span>Playlist</span></h1><iframe align="top,left" frameborder="0" height="480" id="tunegenie-onair" marginheight="0" marginwidth="0" name="onair" scrolling="no" src="http://wlwi.tunegenie.com/plugins/onair/?branding=no&amp;colorscheme=light&amp;bg=ffffff" width="310"></iframe>
</div><!-- .block-content -->

</div><!-- #block-b5u55775642d63a1 -->
<div id="block-42" class="facebook-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bxz5499e7ebdb200 block-original-btc58a5c4bc61ee3" 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-bny55775642f200a" class="concert block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bny55775642f200a block-original-b9n58a5c4bc71c9d" data-alias="Concert Calendar">
<div class="block-content">
<h1 class="block-title"><span>Concert Calendar</span></h1><iframe align="top,left" frameborder="0" height="480" id="tunegenie-concerts" marginheight="0" marginwidth="0" name="concerts" scrolling="no" src="http://wlwi.tunegenie.com/plugins/concerts/?colorscheme=light&amp;bg=ffffff" width="310"></iframe>
</div><!-- .block-content -->

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

<div class="entry-row">

<article id="post-768874" class="post-768874 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news category-ncd-podcasts tag-best-shot tag-jimmie-allen author-jcasey alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2018/02/07/jimmie-allen-talks-about-growing-up-in-delaware-overcoming-obstacles-signing-a-record-deal-releasing-his-new-single-more/" title="Jimmie Allen Talks About Growing Up in Delaware, Overcoming Obstacles, Signing a Record Deal, Releasing His New Single &#038; More" rel="bookmark">Jimmie Allen Talks About Growing Up in Delaware, Overcoming Obstacles, Signing a Record Deal, Releasing His New Single &#038; More</a></h2></header></article><!-- #post-768874 --><article id="post-768622" class="post-768622 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-interviews category-ncd-news tag-jason-aldean author-jcasey custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2018/01/26/10-things-jason-aldean-says-about-his-new-single-album-tour/" title="10 Things Jason Aldean Says About His New Single, Album &#038; Tour" rel="bookmark">10 Things Jason Aldean Says About His New Single, Album &#038; Tour</a></h2></header></article><!-- #post-768622 -->

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



<div class="entry-row">

<article id="post-768611" class="post-768611 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news category-ncd-podcasts tag-natalie-stovall author-jcasey alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2018/01/25/natalie-stovall-talks-mules-music-making-it-on-the-voice-and-more/" title="Natalie Stovall Talks Mules, Music, Making It On &#8220;The Voice&#8221; and More" rel="bookmark">Natalie Stovall Talks Mules, Music, Making It On &#8220;The Voice&#8221; and More</a></h2></header></article><!-- #post-768611 --><article id="post-768502" class="post-768502 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news category-ncd-podcasts tag-eddie-montgomery tag-montgomery-gentry author-jcasey custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2018/01/19/eddie-montgomery-opens-up-about-the-death-of-troy-gentry-their-new-album-his-upcoming-tour-more/" title="Eddie Montgomery Opens Up About the Death of Troy Gentry, Their New Album, His Upcoming Tour &#038; More" rel="bookmark">Eddie Montgomery Opens Up About the Death of Troy Gentry, Their New Album, His Upcoming Tour &#038; More</a></h2></header></article><!-- #post-768502 -->

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



<div class="entry-row">

<article id="post-767908" class="post-767908 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news category-ncd-podcasts tag-jennifer-nettles tag-kristian-bush tag-still-the-same tag-sugarland author-jcasey alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2017/12/21/sugarland-talks-reuniting-at-the-cma-awards-releasing-new-single-working-on-upcoming-album-more/" title="Sugarland Talks Reuniting at the CMA Awards, Releasing New Single, Working on Upcoming Album &#038; More" rel="bookmark">Sugarland Talks Reuniting at the CMA Awards, Releasing New Single, Working on Upcoming Album &#038; More</a></h2></header></article><!-- #post-767908 --><article id="post-767652" class="post-767652 post type-post status-publish format-standard has-post-thumbnail hentry category-ncd-news category-ncd-podcasts tag-solid-ground tag-wade-bowen author-jcasey custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.wlwi.com/2017/12/07/wade-bowen-talks-about-his-texas-roots-early-influences-touring-upcoming-2018-album-more-performs-2-new-songs/" title="Wade Bowen Talks About His Texas Roots, Early Influences, Touring, Upcoming 2018 Album &#038; More + Performs 2 New Songs" rel="bookmark">Wade Bowen Talks About His Texas Roots, Early Influences, Touring, Upcoming 2018 Album &#038; More + Performs 2 New Songs</a></h2></header></article><!-- #post-767652 -->

</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-b8558a5c4bc68386" 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 -->
<aside id="block-45" class="free-apps block block-type-widget-area block-fluid-height block-mirrored block-mirroring-bcg5499e7ebdfbb2 block-original-bo958a5c4bc4eca0" data-alias="Home - Free Apps" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<h1 class="block-title"><span>Free Apps</span></h1><ul class="widget-area"><li id="text-3" class="widget widget_text">
			<div class="textwidget"><div align="center">
<a href="https://itunes.apple.com/us/app/i-92/id807409000?mt=8&amp;ign-mpt=uo=4" target="_blank"><img src="/wp-content/uploads/sites/981/2014/10/appstore.png" border="0"></a>&nbsp;<a href="https://play.google.com/store/apps/details?id=com.airkast.WLWIFM" target="_blank"><img src="/wp-content/uploads/sites/981/2014/10/googleplay.png" border="0"></a>&nbsp;<a href="http://amazon.com/dp/B00IYXJM4U" target="_blank"><img src="/wp-content/uploads/sites/981/2014/10/amazon.png" border="0"></a>
</div></div>
		</li><!-- .widget -->
</ul>
</div><!-- .block-content -->

</aside><!-- #block-45 -->
<div id="block-46" class="300x250-ad-2 block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bll5499e7ebe1218 block-original-be758a5c4bc57311" 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 -->
<figure id="block-47" class="iheartradio block block-type-image block-fixed-height block-mirrored block-mirroring-b4r5499e7ebe2af9 block-original-b9158a5c4bc5de7f" data-alias="iHeartRadio" itemscope="" itemtype="http://schema.org/ImageObject">
<div class="block-content">
<a href="http://www.iheart.com/live/5591/" class="image" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wlwi-fm/wp-content/uploads/sites/981/2014/10/iheartradio.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

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

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

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


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

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

<div id="wrapper-wl958a5c4bc21a4f" 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-299373" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-299373"><a href="/1111/11/11/privacy-policy">Privacy Policy</a></li>
<li id="menu-item-299376" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-299376"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-299379" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-299379"><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.wlwi.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.wlwi.com/station-information/">Station Information</a></li>
<li id="menu-item-152958" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-152958"><a href="http://www.wlwi.com/wlwi-fm-cumulus-broadcasting-montgomery-eeo/">EEO</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-767446" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-767446"><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-bmo55e9add8d958e" 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-bmo55e9add8d958e -->

</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.wlwi.com/2017/09/12/everything-you-need-to-know-about-tonights-hand-in-hand-benefit-concert-for-hurricane-relief/?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.wlwi.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.wlwi.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.wlwi.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.wlwi.com\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.wlwi.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.wlwi.com\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.wlwi.com\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.wlwi.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.wlwi.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.wlwi.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/media-library-assistant/includes/../js/jquery.prettyPhoto.js?ver=1.61'></script>
<script type='text/javascript' src='http://www.wlwi.com/wp-content/plugins/media-library-assistant/includes/../js/widget-front-end.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.wlwi.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>
		<script>
window.tgmplibs="cumulus2,_append_www";
</script>
<script type="text/javascript" class="_tgmp_p">
function onTuneGenieMediaPlayerLoaded() {
    window.tgmp=new TuneGenieMediaPlayer('playerbar', {
        brand: "wlwi",
        zindex: 50000,
        theme: ["#000000"],
        position: "bottom",
        debug: true,
        ios_frame: 3,
        autostart: false,
        infoTrayOnLoad: true,
        useTritonPlayer: true,
        promptZag: true,
    });
    tgmp.go();
    window.tgmp_rc = new TuneGenieRC(tgmp);
    tgmp_rc.recentSongWidget(document.getElementById('tgrecent'),{});
    tgmp_rc.nowPlayingWidget(document.getElementById('tgnowplaying'),{});
}
</script>
<script type="text/javascript"  class="_tgmp_p" async src="https://mpl.tunegenie.com/js/loader2.min.js"></script>


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

<!-- TGMP PLUGIN ENABLED 2016-08-05T17:26:55.167Z -->


<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=1&cb=996204957';
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 2956/3163 objects using memcache
Page Caching using memcache
Database Caching 71/89 queries in 0.451 seconds using memcache

Served from: www.1460wrad.com @ 2018-02-13 21:38:03 by W3 Total Cache
-->