<!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>Van Swept Away with 6 Relatives in Harvey&#8217;s Flood Found in Houston Bayou | 105.9 FM and AM 630—Where Washington Comes To Talk | WMAL-AF</title><link rel='dns-prefetch' href='//www.wmal.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.wmal.com/2017/08/30/van-swept-away-with-6-relatives-in-harveys-flood-found-in-houston-bayou/" />
		<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.wmal.com\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.wmal.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>
		<script id="amp-minify-js-header">
var themify_vars = {"version":"1.9.6","url":"http:\/\/www.wmal.com\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.wmal.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.wmal.com\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.wmal.com\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.wmal.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"};
var _ampconfig = {"site_url":"http:\/\/www.wmal.com","site_id":"238","tz":"America\/New_York","tz_offset":"-5","ts":"1512399620","blog_name":"105.9 FM and AM 630\u2014Where Washington Comes To Talk | WMAL-AF","client_name":"cumuluspro","user_ID":"","ts_offset":"1518521920","version":"2.45.0.2","env":"prod","settings":{"tenant_id":"see_10345","syn_site_name":"WMAL-FM","selector_logo":"","selector_masthead":"","selector_nav":"","selector_rotator":"","default_show_name":"","default_show_img":"","vidible_company_key":"06125e55709b3c4ffdfe3c3f8a9ed8bd","client_name":false,"nielsen_provider":"cumulus","promoreel_priority":true}};
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"};
var _amplistenlive = {"blog_id":"238","callsign":"","mount_name":"WMALAM","provider":"stream_the_world","gmt_offset":"-18000"};

</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='amp-minify-css-header-css'  href='http://www.wmal.com/wp-content/uploads/amp-minify/1494346199.238.header.css' type='text/css' media='all' />
<link rel='stylesheet' id='headway-general-css'  href='http://www.wmal.com/wp-content/uploads/sites/238/headway/cache/general-b7dcb91.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-single-css'  href='http://www.wmal.com/wp-content/uploads/sites/238/headway/cache/layout-single-79a138b.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.wmal.com/wp-content/uploads/sites/238/headway/cache/responsive-grid-d2119e4.css?ver=4.7.3' type='text/css' media='all' />
<link rel="stylesheet" type="text/css" media="all" href="http://www.wmal.com/wp-content/themes/Headway-AMP_CMS/style.css" />

<!-- Scripts -->
<script type='text/javascript' src='http://www.wmal.com/wp-content/uploads/amp-minify/1494346199.238.header.js'></script>
<script type='text/javascript' src='http://www.wmal.com/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://www.wmal.com/wp-content/uploads/sites/238/headway/cache/block-dynamic-js-layout-single-769a883.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wmal.com/wp-content/uploads/sites/238/headway/cache/responsive-grid-js-e6e6939.js?ver=4.7.3'></script>
<script type='text/javascript' src='//see-p-elb-01.tritondigital.net/widget/see_10345/see.js?ver=1.3.0'></script>

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

<!--[if lt IE 8]>
<script src="http://www.wmal.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.WMAL.AF', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-0').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","mid");
googletag.defineSlot('/6717/cd.WMAL.AF', [[728, 90], [970, 90]], 'div-gpt-ad-1418849849333-1').addService(googletag.pubads())
.defineSizeMapping(leaderboardSizeMap).setCollapseEmptyDiv(true).setTargeting("pos","top");
googletag.defineSlot('/6717/cd.WMAL.AF', [[728, 90], [970, 90]], 'div-gpt-ad-1418849849333-2').addService(googletag.pubads())
.defineSizeMapping(leaderboardSizeMap).setCollapseEmptyDiv(true).setTargeting("pos","bot");
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-3').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","mid2");
googletag.defineSlot('/6717/cd.WMAL.AF', [[160, 600]], 'div-gpt-ad-1418849849333-4').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","left");
googletag.defineSlot('/6717/cd.WMAL.AF', [[160, 600]], 'div-gpt-ad-1418849849333-5').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","right");
googletag.defineSlot('/6717/cd.WMAL.AF', [[654, 70]], 'div-gpt-ad-1418849849333-6').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","rdioplayer");
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 100]], 'div-gpt-ad-1418849849333-7').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest1");
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 100]], 'div-gpt-ad-1418849849333-8').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest2");
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 100]], 'div-gpt-ad-1418849849333-9').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","contest3");
googletag.defineSlot('/6717/cd.WMAL.AF', [[100, 51]], 'div-gpt-ad-1418849849333-10').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","rdiobutton");
googletag.defineSlot('/6717/cd.WMAL.AF', [[113, 23]], 'div-gpt-ad-1418849849333-11').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor1");
googletag.defineSlot('/6717/cd.WMAL.AF', [[113, 23]], 'div-gpt-ad-1418849849333-12').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor2");
googletag.defineSlot('/6717/cd.WMAL.AF', [[113, 23]], 'div-gpt-ad-1418849849333-13').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor3");
googletag.defineSlot('/6717/cd.WMAL.AF', [[113, 23]], 'div-gpt-ad-1418849849333-14').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","feedsponsor4");
googletag.defineSlot('/6717/cd.WMAL.AF', [[1, 1]],'div-gpt-ad-1418849849333-16').addService(googletag.pubads())
.setTargeting("pos","wallpaper-ad");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-18').setCollapseEmptyDiv(true).addService(googletag.pubads())
.setTargeting("pos","midresponsive");
googletag.defineSlot('/6717/cd.WMAL.AF', [[300, 250], [300, 600]], 'div-gpt-ad-1418849849333-19').addService(googletag.pubads())
.setCollapseEmptyDiv(true).setTargeting("pos","remnantcube");
});
</script>

<!--ONESTAT SCRIPTCODE START Embed Player-->
  <script type="text/javascript">
  <!--
  jQuery(document).ready(function(){
    var d=document;
    var sid="wmal-am.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-WWV7V2');</script>
<!-- End Google Tag Manager -->

<!---Google news center ----->
<meta name="google-site-verification" content="wFn-fuHOuxE6hYIXVd_R0jReXAzt07PxfUZ1MsORiBg" />
<!---End Google news center ----->

<!---Tout In Article Video--->
<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script>
<script>
  var googletag = googletag || {};
  googletag.cmd = googletag.cmd || [];
</script>

<script>
  googletag.cmd.push(function() {
    googletag.defineOutOfPageSlot('/6717/cd.wmal.af/tout-in-article-video', 'div-gpt-ad-1497535813471-0').addService(googletag.pubads());
    googletag.pubads().enableSingleRequest();
    googletag.enableServices();
  });
</script>
<!---End Tout In Article Video--->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="alternate" type="application/rss+xml" title="105.9 FM and AM 630—Where Washington Comes To Talk | WMAL-AF &raquo; Feed" href="http://www.wmal.com/feed/" />
<link rel='shortlink' href='http://www.wmal.com/?p=828649' />
			<script type="text/javascript">
				var _gaq = _gaq || [];

				
									_gaq.push(['b._setAccount', 'UA-96097725-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.wmal.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.wmal.com/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.wmal.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', '1059 FM and AM 630Where Washington Comes To Talk  WMALAF');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  NewsTalk', 'Market  Washington DC']);
      googletag.pubads().setTargeting('cms-ptitle', 'Van Swept Away with 6 Relatives in Harvey&#8217;s Flood Found in Houston Bayou');
      googletag.pubads().setTargeting('cms-pcat', ['WMAL News Now', 'WMAL News Now Headlines']);
  });
</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="105.9 FM and AM 630—Where Washington Comes To Talk | WMAL-AF"/>
  <meta property="og:title" content="Van Swept Away with 6 Relatives in Harvey&#039;s Flood Found in Houston Bayou"/>
  <meta property="og:url" content="http://www.wmal.com/2017/08/30/van-swept-away-with-6-relatives-in-harveys-flood-found-in-houston-bayou/"/>
  <meta property="og:type" content="article"/>
  <meta property="og:description" content="Two bodies were found in van, which swept away Sunday in the flood."/>
  <meta property="og:image" content="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.jpg"/>
  <meta property="article:published_time" content="2017-08-30T14:51:31+00:00"/>
  <meta property="article:modified_time" content="2017-08-30T14:51:31+00:00" />
  <meta property="og:updated_time" content="2017-08-30T14:51:31+00:00" />
  <meta property="article:section" content="WMAL News Now"/>
  <meta property="article:section" content="WMAL News Now Headlines"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="Van Swept Away with 6 Relatives in Harvey&#039;s Flood Found in Houston Bayou"/>
  <meta itemprop="description" content="Two bodies were found in van, which swept away Sunday in the flood."/>
  <meta itemprop="image" content="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.jpg"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="Van Swept Away with 6 Relatives in Harvey&#039;s Flood Found in Houston Bayou"/>
  <meta name="twitter:url" content="http://www.wmal.com/2017/08/30/van-swept-away-with-6-relatives-in-harveys-flood-found-in-houston-bayou/"/>
  <meta name="twitter:description" content="Two bodies were found in van, which swept away Sunday in the flood."/>
  <meta name="twitter:image" content="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.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-828649 single-format-standard custom responsive-grid-enabled responsive-grid-active layout-single-post-828649 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="leaderboard-ad 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-5">
<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/wmal-af/wp-content/uploads/sites/238/2015/02/site-logo.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

</figure><!-- #block-31 -->
<div id="block-bkj54a2b9912881a" 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-bkj54a2b9912881a -->

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

<section class="column column-2 grid-left-0 grid-width-19">
<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.wmal.com/wp-content/uploads/sites/238/2017/02/playerstart.png" title="Listen Live!!" class="img-1"  /></a></li><li><a href="/listen-live-with-alexa"><img src="http://images.tritondigitalcms.com/6616/sites/238/2018/01/02133400/Alexa-Social-Logo-MUSIC.png" alt="Alexa" class="img-2"  /></a></li><li><a href="https://www.facebook.com/WMALDC" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2014/12/facebook1.png" alt="Like us on Facebook" title="Like us on Facebook" class="img-3"  /></a></li><li><a href="https://twitter.com/WMALNews" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2014/12/twitter1.png" alt="Follow us on Twitter" title="Follow us on Twitter" class="img-4"  /></a></li><li><a href="https://instagram.com/wmaldc/" target="_blank"><img src="http://www.wmal.com/wp-content/uploads/sites/238/2015/06/instagram-3-xxl.png" title="instagram" class="img-5"  /></a></li><li><a href="http://wmal.listenernetwork.com/" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2015/01/cumulus-vip-red.png" alt="VIP" title="VIP" class="img-6"  /></a></li></ul></div><!-- .social-icons-container -->
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-17 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-71370" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-71370"><a href="http://www.wmal.com/full-show-lineup/">Shows</a>
<ul class="sub-menu">
	<li id="menu-item-49562" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49562"><a href="http://www.wmal.com/mornings-on-the-mall/">Mornings On The Mall 5am-9am</a></li>
	<li id="menu-item-49307" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49307"><a href="http://www.wmal.com/chris-plante/">Chris Plante 9am-12pm</a></li>
	<li id="menu-item-49565" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49565"><a href="http://www.wmal.com/rush-limbaugh/">Rush Limbaugh 12pm-3pm</a></li>
	<li id="menu-item-633984" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-633984"><a href="http://www.wmal.com/the-larry-oconnor-show/">Larry O&#8217;Connor 3pm-6pm</a></li>
	<li id="menu-item-49625" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49625"><a href="http://www.wmal.com/mark-levin/">Mark Levin 6pm-9pm</a></li>
	<li id="menu-item-49727" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49727"><a href="http://www.wmal.com/john-batchelor/">John Batchelor 9pm-12am</a></li>
	<li id="menu-item-49724" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49724"><a href="http://www.wmal.com/full-show-lineup/">Full Show Lineup</a></li>
</ul>
</li>
<li id="menu-item-15269" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-15269"><a>News</a>
<ul class="sub-menu">
	<li id="menu-item-783373" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-783373"><a href="http://www.wmal.com/category/wmal-news-now/">WMAL News Now</a></li>
	<li id="menu-item-70761" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-70761"><a href="http://www.wmal.com/category/local-news/">WMAL Local News</a></li>
	<li id="menu-item-49811" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49811"><a href="http://www.wmal.com/traffic/">WMAL Traffic</a></li>
	<li id="menu-item-66990" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66990"><a href="http://www.wmal.com/wmal-weather/">WMAL Weather</a></li>
	<li id="menu-item-66666" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66666"><a href="/category/cnn-us/">National News</a></li>
	<li id="menu-item-66639" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66639"><a href="http://www.wmal.com/politics/">Political News</a></li>
	<li id="menu-item-66669" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66669"><a href="/category/cnn-world/">World News</a></li>
	<li id="menu-item-579618" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-579618"><a href="http://www.wmal.com/business/">Business News</a></li>
	<li id="menu-item-66675" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66675"><a href="http://www.wmal.com/newsfeed/cnn-sports/">Sports</a></li>
	<li id="menu-item-66678" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66678"><a href="http://www.wmal.com/newsfeed/cnn-entertainment/">Entertainment</a></li>
	<li id="menu-item-85494" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-85494"><a href="http://www.wmal.com/todays/">Today&#8217;s Military News</a></li>
</ul>
</li>
<li id="menu-item-51413" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-51413"><a href="http://www.wmal.com/podcasts/">Podcasts</a></li>
<li id="menu-item-85503" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-85503"><a>Features</a>
<ul class="sub-menu">
	<li id="menu-item-842538" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-842538"><a href="http://www.wmal.com/fisherhouse/">Operation Fisher House 2017</a></li>
	<li id="menu-item-805576" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-805576"><a href="http://www.wmal.com/redskins/">Redskins on WMAL</a></li>
	<li id="menu-item-480746" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-480746"><a href="http://www.wmal.com/breakingnews/">WMAL Breaking News Channel</a></li>
	<li id="menu-item-70659" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-70659"><a href="http://www.wmal.com/category/events/">WMAL Events</a>
	<ul class="sub-menu">
		<li id="menu-item-838142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-838142"><a href="http://www.wmal.com/newyear/">New Year&#8217;s Eve Gala</a></li>
		<li id="menu-item-842539" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-842539"><a href="http://www.wmal.com/fisherhouse/">Operation Fisher House 2017</a></li>
		<li id="menu-item-840662" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-840662"><a href="http://www.wmal.com/whitehouse/">WMAL Live At The White House</a></li>
		<li id="menu-item-657062" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-657062"><a href="http://www.wmal.com/freespeechforum/">WMAL Free Speech Forum</a></li>
		<li id="menu-item-678794" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-678794"><a href="http://www.wmal.com/pint/">Politics And A Pint</a></li>
	</ul>
</li>
	<li id="menu-item-833072" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-833072"><a href="http://www.wmal.com/mervis/">Larry O&#8217;Connor for Mervis Diamond Importers</a></li>
	<li id="menu-item-725641" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-725641"><a href="http://www.wmal.com/contests/">Contests</a></li>
	<li id="menu-item-137706" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-137706"><a href="http://www.wmal.com/photo-galleries/">WMAL Photo Galleries</a></li>
	<li id="menu-item-465708" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-465708"><a href="http://www.wmal.com/category/quiz/">Quizzes</a></li>
	<li id="menu-item-639075" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-639075"><a href="http://wmal.listenernetwork.com/">Sign Up For Our Newsletters</a></li>
</ul>
</li>
<li id="menu-item-49844" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-49844"><a href="http://www.wmal.com/station-information/">Station</a>
<ul class="sub-menu">
	<li id="menu-item-639069" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-639069"><a href="http://wmal.listenernetwork.com/">Sign Up For Our Newsletters</a></li>
	<li id="menu-item-168864" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-168864"><a href="http://www.wmal.com/station-information/">Contact Information</a></li>
	<li id="menu-item-49847" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49847"><a href="http://www.wmal.com/advertise/">Advertise With Us</a></li>
	<li id="menu-item-695944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-695944"><a href="http://www.wmal.com/community/">Community Spotlight</a></li>
	<li id="menu-item-49946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49946"><a href="http://www.wmal.com/history/">WMAL History</a></li>
	<li id="menu-item-49949" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49949"><a href="http://www.wmal.com/employment/">Employment Opportunities</a></li>
	<li id="menu-item-49940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49940"><a href="http://www.wmal.com/cumulus-washington-dc-eeo-report/">EEO Report</a></li>
</ul>
</li>
<li id="menu-item-833967" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-833967"><a href="http://www.wmal.com/charity/">Charity Directory</a></li>
<li id="menu-item-590475" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-590475"><a target="_blank" href="http://www.sweetdealscumulus.com/category/local">Sweet Deals</a></li>
<li id="menu-item-575427" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-575427"><a href="http://wmal-fm.mygameroom.com">Games</a></li>
<li id="menu-item-843272" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-843272"><a target="_blank" href="http://cumulusdigital.com?market=Washington">Digital│C-Suite</a></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-1 grid-left-0">
<nav id="block-94" 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.wmal.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-94 -->

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

<section class="sub-column sub-column-3 column column-3 grid-width-1 grid-left-0">
<div id="block-bmg5565f77979ccb" 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/238/2015/05/search_small.png">
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-1 column column-1 grid-width-5 grid-left-0">
<div id="block-b7x54a2b9912b304" 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-b7x54a2b9912b304 -->

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

</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-132" class="block block-type-content block-fluid-height" data-alias="">
<div class="block-content">
<div class="loop"><article id="post-828649" class="post-828649 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now category-wmal-news-now-headlines author-mrobinson " itemscope itemtype="http://schema.org/BlogPosting"><header><h1 class="entry-title" itemprop="headline">Van Swept Away with 6 Relatives in Harvey&#8217;s Flood Found in Houston Bayou</h1><div class="entry-meta entry-meta-above">Posted on <time class="entry-date published updated" itemprop="datePublished" datetime="2017-08-30T14:51:31+00:00">August 30, 2017</time></div><!-- .entry-meta --></header><div class="entry-content" itemprop="text"><p><a href="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.jpg"><img class="alignnone size-full wp-image-828655" src="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.jpg" alt="" width="654" height="374" srcset="http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867.jpg 654w, http://images.tritondigitalcms.com/6616/sites/238/2017/08/30145034/S082873867-300x172.jpg 300w" sizes="(max-width: 654px) 100vw, 654px" /></a></p>
<p>TEXAS(CNN) &#8212; The van in which an elderly couple and their four great-grandchildren were riding when the vehicle was swept away Sunday by Tropical Storm Harvey&#8217;s floodwaters has been found, Sheriff Ed Gonzalez of Harris County, Texas, said Wednesday.</p>
<p>Two bodies were found in the white, cargo-type van, and dive teams were making their way through murky water in a wooded area to inspect it for more remains, he said. The van was partially submerged, a photo released by the sheriff&#8217;s department shows.</p>
<p>Manuel Saldivar, 84, Belia Saldivar, 81; and great-grandchildren Devy, 16, Dominic, 14, Xavier, 8, and Daisy, 6, were inside the van when it sank in Greens Bayou.</p>
<p>Sammy Saldivar, the son of Manuel and Belia Saldivar, was driving the van on Sunday when the van plunged into the bayou, Ric Saldivar, Sammy&#8217;s brother, told CNN.</p>
<p>Sammy managed to wriggle out of his seat belt and through the driver&#8217;s side window. He made his way to a branch in the rushing water and held on for his life for 45 minutes, Ric Saldivar said.</p>
<p>Rescuers found Sammy hanging onto the tree branch but couldn&#8217;t immediately find the van.</p>
<p>Sammy had recently moved to Texas from Missouri to live with his aging parents, who both suffered from Alzheimer&#8217;s disease, his brother said.</p>
<p>Developing story &#8211; more to come</p>
<p>CORRECTION: An earlier version of this story incorrectly reported the relationship of the children to the adults in the van. They were their great-grandchildren.</p>
<p>The-CNN-Wire ™ &amp; © 2017 Cable News Network, Inc., a Time Warner Company. All rights reserved. (PHOTO: CNN)</p>
<div id="themify_builder_content-828649" data-postid="828649" class="themify_builder_content themify_builder_content-828649 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.wmal.com/category/wmal-news-now/" rel="category tag">WMAL News Now</a>, <a href="http://www.wmal.com/category/wmal-news-now-headlines/" rel="category tag">WMAL News Now Headlines</a></footer><!-- .entry-utility --></article><!-- #post-828649 --></div>
</div><!-- .block-content -->

</div><!-- #block-132 -->
<div id="block-bti58e7f68e62d10" class="block block-type-content block-fluid-height" data-alias="More From WMAL">
<div class="block-content">
<h1 class="block-title"><span>MORE FROM WMAL NEWS</span></h1><div class="loop">

<div class="entry-row">

<article id="post-854065" class="post-854065 post type-post status-publish format-standard has-post-thumbnail hentry category-local-news category-wmal-news-now author-aengel alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/man-found-dead-by-police-in-his-home-had-been-deceased-for-multiple-years/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2017/03/29100818/police-dc1.png" alt="Man Found Dead by Police in his Home, Had Been Deceased for Multiple Years" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/man-found-dead-by-police-in-his-home-had-been-deceased-for-multiple-years/" title="Man Found Dead by Police in his Home, Had Been Deceased for Multiple Years" rel="bookmark">Man Found Dead by Police in his Home, Had Been Deceased for Multiple Years</a></h2></header></article><!-- #post-854065 --><article id="post-854061" class="post-854061 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now category-wmal-news-now-headlines category-politics author-aengel custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/us-intelligence-boss-security-clearances-are-broken/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13111012/Dan-Coats-screenshot-CNN-pool.jpg" alt="US Intelligence Boss: Security Clearances are &#8216;Broken&#8217;" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/us-intelligence-boss-security-clearances-are-broken/" title="US Intelligence Boss: Security Clearances are &#8216;Broken&#8217;" rel="bookmark">US Intelligence Boss: Security Clearances are &#8216;Broken&#8217;</a></h2></header></article><!-- #post-854061 --><article id="post-854036" class="post-854036 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now category-politics author-jmatthews alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/pentagon-asks-for-major-budget-hike-amid-russia-china-n-korea-threats/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13061609/Pentagon-CNN.jpg" alt="Pentagon Asks For Major Budget Hike Amid Russia, China, N. Korea Threats" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/pentagon-asks-for-major-budget-hike-amid-russia-china-n-korea-threats/" title="Pentagon Asks For Major Budget Hike Amid Russia, China, N. Korea Threats" rel="bookmark">Pentagon Asks For Major Budget Hike Amid Russia, China, N. Korea Threats</a></h2></header></article><!-- #post-854036 --><article id="post-854031" class="post-854031 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now author-jmatthews custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/parents-sue-to-block-transgendered-teen-from-receiving-hormones/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13055118/justice-pixabay-21.jpg" alt="Parents Sue To Block Transgendered Teen From Receiving Hormones" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/parents-sue-to-block-transgendered-teen-from-receiving-hormones/" title="Parents Sue To Block Transgendered Teen From Receiving Hormones" rel="bookmark">Parents Sue To Block Transgendered Teen From Receiving Hormones</a></h2></header></article><!-- #post-854031 -->

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



<div class="entry-row">

<article id="post-854027" class="post-854027 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now author-jmatthews alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/study-kidney-stones-may-be-on-the-rise-in-the-u-s/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13052916/kidney-stone.jpg" alt="STUDY:  Kidney Stones May Be On The Rise In The U.S." width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/study-kidney-stones-may-be-on-the-rise-in-the-u-s/" title="STUDY:  Kidney Stones May Be On The Rise In The U.S." rel="bookmark">STUDY:  Kidney Stones May Be On The Rise In The U.S.</a></h2></header></article><!-- #post-854027 --><article id="post-854024" class="post-854024 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now author-jmatthews custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/americas-youngest-olympian-makes-history-at-pyeongchang/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13051208/Chloe-Kim-Getty.jpg" alt="America&#8217;s Youngest Olympian Makes History At Pyeongchang" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/americas-youngest-olympian-makes-history-at-pyeongchang/" title="America&#8217;s Youngest Olympian Makes History At Pyeongchang" rel="bookmark">America&#8217;s Youngest Olympian Makes History At Pyeongchang</a></h2></header></article><!-- #post-854024 --><article id="post-854020" class="post-854020 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now category-politics author-jmatthews alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/13/clock-ticking-as-senators-race-to-find-common-ground-on-immigration/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2018/02/13050114/Capitol-CNN3.jpg" alt="Clock Ticking As Senators Race To Find Common Ground On Immigration" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/13/clock-ticking-as-senators-race-to-find-common-ground-on-immigration/" title="Clock Ticking As Senators Race To Find Common Ground On Immigration" rel="bookmark">Clock Ticking As Senators Race To Find Common Ground On Immigration</a></h2></header></article><!-- #post-854020 --><article id="post-853987" class="post-853987 post type-post status-publish format-standard has-post-thumbnail hentry category-wmal-news-now category-wmal-news-now-headlines category-politics author-aengel custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/2018/02/12/snowden-ribs-white-house-over-security-clearance-backlog/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2017/01/25164934/Snowden-cnn-credit.jpg" alt="Snowden Ribs White House Over Security Clearance Backlog" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/2018/02/12/snowden-ribs-white-house-over-security-clearance-backlog/" title="Snowden Ribs White House Over Security Clearance Backlog" rel="bookmark">Snowden Ribs White House Over Security Clearance Backlog</a></h2></header></article><!-- #post-853987 -->

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

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

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

</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-bb25499e64d5bce0 block-original-66" 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-b1l5499e64d5fa97 block-original-69" data-alias="Sweet Deals Ad">
<div class="block-content">
<!--<a href="http://www.sweetjack.com/"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2014/12/headway-imported-image6.png"></a>-->
<a href="http://www.sweetdealscumulus.com/deal/washington/texas-de-brazil-112016-4" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2014/12/headway-imported-image6.png"></a>
</div><!-- .block-content -->

</div><!-- #block-38 -->
<aside id="block-45" class="free-apps block block-type-widget-area block-fluid-height block-mirrored block-mirroring-bso5499e64d75758 block-original-81" 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/630-wmal/id341276200?mt=8&amp;uo=4" target="_blank"><img src="/wp-content/uploads/sites/238/2014/10/appstore.png" border="0"></a>&nbsp;<a href="https://play.google.com/store/apps/details?id=com.airkast.WMALAM" target="_blank"><img src="/wp-content/uploads/sites/238/2014/10/googleplay.png" border="0"></a>&nbsp;<a href="http://amazon.com/dp/B00FDZ61EQ" target="_blank"><img src="/wp-content/uploads/sites/238/2014/10/amazon.png" border="0"></a>
</div></div>
		</li><!-- .widget -->
</ul>
</div><!-- .block-content -->

</aside><!-- #block-45 -->
<aside id="block-bj655674f413ecc9" class="free-apps block block-type-widget-area block-fluid-height block-mirrored block-mirroring-bj655674f413ecc9 block-original-bqu55674fd9ec47b" data-alias="Right Rail Widget" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<ul class="widget-area"><li id="simpleimage-4" class="widget widget_simpleimage">


	<p class="simple-image">
		<a href="http://www.wmal.com/traffic/"><img width="300" height="150" src="http://images.tritondigitalcms.com/6616/sites/238/2015/05/25184305/hadeedtraffic300x150.gif" class="attachment-full size-full" alt="" /></a>	</p>


</li><!-- .widget -->
</ul>
</div><!-- .block-content -->

</aside><!-- #block-bj655674f413ecc9 -->
<div id="block-33" class="weather block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bab5499e64db04ab block-original-b9r558daf9c36e25" data-alias="Weather">
<div class="block-content">
<h1 class="block-title"><span>Local Weather</span></h1><div style="width: 300px;"><iframe style="display: block;" src="//cdnres.willyweather.com/widget/loadView.html?id=62241" width="290" height="228" frameborder="0" scrolling="no"></iframe><a style="display: block;height: 20px;position: relative;margin: -20px 0 0 0;text-indent: -9999em;z-index: 1" href="http://www.willyweather.com/dc/district-of-columbia-county/chevy-chase.html" rel="nofollow">weather</a></div>
</div><!-- .block-content -->

</div><!-- #block-33 -->
<aside id="block-bzv568a8d6e5aa72" class="free-apps block block-type-widget-area block-fluid-height block-mirrored block-mirroring-bzv568a8d6e5aa72 block-original-b4j568a8e1b512ce" data-alias="Right Rail Widget 2" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<ul class="widget-area"><li id="simpleimage-7" class="widget widget_simpleimage">


	<p class="simple-image">
		<a href="http://www.garagedoorrepair.com/" target="_blank"><img width="300" height="85" src="http://images.tritondigitalcms.com/6616/sites/238/2015/12/25175851/GarageDoorRepairTrafficSponsorship_300x85.jpg" class="attachment-full size-full" alt="" /></a>	</p>


</li><!-- .widget -->
</ul>
</div><!-- .block-content -->

</aside><!-- #block-bzv568a8d6e5aa72 -->
<div id="block-40" class="blogs block block-type-content block-fluid-height block-mirrored block-mirroring-bbg5499e64d62a81 block-original-71" data-alias="On-Air">
<div class="block-content">
<h1 class="block-title"><span>On-Air</span></h1><div class="loop">

<div class="entry-row">

<article id="post-49526" class="post-49526 page type-page status-publish has-post-thumbnail hentry category-mornings-on-the-mall tag-dc tag-mall tag-mary-walter tag-maryland tag-mornings tag-motm tag-news tag-politics tag-vince-coglianese tag-virginia tag-washington author-npinto alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/mornings-on-the-mall/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2015/04/04101243/MOTM-Sq-150.jpg" alt="Mornings On The Mall" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/mornings-on-the-mall/" title="Mornings On The Mall" rel="bookmark">Mornings On The Mall</a></h2></header></article><!-- #post-49526 --><article id="post-49292" class="post-49292 page type-page status-publish has-post-thumbnail hentry category-chris-plante tag-chris-plante tag-dc tag-maryland tag-news tag-politics tag-talk-radio tag-virginia tag-washington author-npinto custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/chris-plante/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2015/04/25184319/Chris_Plante-150x150.jpg" alt="Chris Plante" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/chris-plante/" title="Chris Plante" rel="bookmark">Chris Plante</a></h2></header></article><!-- #post-49292 -->

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



<div class="entry-row">

<article id="post-49508" class="post-49508 page type-page status-publish has-post-thumbnail hentry category-rush-limbaugh author-npinto alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/rush-limbaugh/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2015/04/25184317/Rush_Limbaugh-150x150.jpg" alt="Rush Limbaugh" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/rush-limbaugh/" title="Rush Limbaugh" rel="bookmark">Rush Limbaugh</a></h2></header></article><!-- #post-49508 --><article id="post-605832" class="post-605832 page type-page status-publish has-post-thumbnail hentry category-larry-oconnor-show tag-dc tag-debate tag-discussion tag-larry-oconnor tag-maryland tag-news tag-politics tag-radio tag-talk tag-virginia tag-washington author-awog custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/the-larry-oconnor-show/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2017/02/17174435/Larry-white-150.jpg" alt="The Larry OConnor Show" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/the-larry-oconnor-show/" title="The Larry OConnor Show" rel="bookmark">The Larry O'Connor Show</a></h2></header></article><!-- #post-605832 -->

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



<div class="entry-row">

<article id="post-49607" class="post-49607 page type-page status-publish has-post-thumbnail hentry category-mark-levin author-npinto alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/mark-levin/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2015/04/25184317/Mark_Levin-150x150.jpg" alt="Mark Levin" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/mark-levin/" title="Mark Levin" rel="bookmark">Mark Levin</a></h2></header></article><!-- #post-49607 --><article id="post-49616" class="post-49616 page type-page status-publish has-post-thumbnail hentry category-john-batchelor author-npinto custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.wmal.com/john-batchelor/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/238/2015/04/25184318/John_Batchelor-150x150.jpg" alt="John Batchelor" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.wmal.com/john-batchelor/" title="John Batchelor" rel="bookmark">John Batchelor</a></h2></header></article><!-- #post-49616 -->

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

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

</div><!-- #block-40 -->
<div id="block-36" class="vip-club-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-b5n5499e64d5e75f block-original-68" 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-bjs557f32f6b898d" class="headlines block block-type-custom-code block-fluid-height" data-alias="Golf Player">
<div class="block-content">
<a href="#"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wmal-af/wp-content/uploads/sites/238/2014/12/headway-imported-image28.png"></a>
</div><!-- .block-content -->

</div><!-- #block-bjs557f32f6b898d -->
<div id="block-42" class="facebook-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-b4u5499e64d6fc9b block-original-73" 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-44" class="twitter-ad block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bav5499e64d7435f block-original-79" 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-box5499e64d77392 block-original-124" 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 -->
<div id="block-b1z56b3ac5bca775" class="block block-type-custom-code block-fluid-height block-mirrored block-mirroring-b1z56b3ac5bca775 block-original-bbk56b3acddc8490" data-alias="Remnant Cube">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-19'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-19'); });
</script>
</div>
</div><!-- .block-content -->

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

</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-208104" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-208104"><a href="/1111/11/11/privacy-policy">Privacy Policy</a></li>
<li id="menu-item-208110" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-208110"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-208113" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-208113"><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.wmal.com/advertise/">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.wmal.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-617046" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-617046"><a target="_blank" href="https://publicfiles.fcc.gov/fm-profile/wmal-fm">FCC Public File for WMAL-FM</a></li>
<li id="menu-item-617052" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-617052"><a target="_blank" href="https://publicfiles.fcc.gov/am-profile/wmal">FCC Public File for WMAL-AM</a></li>
<li id="menu-item-844381" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-844381"><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-bau55cde7b537616" 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><!-- .block-content -->

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

</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 / <a href="/wp-content/uploads/sites/238/2015/04/Cumulus-Washington__DC_2015_EEO_PFR.pdf" target="_new">Cumulus Media Cumulus Media is an equal opportunity employer / AA </a></p><p class="footer-responsive-grid-link-container footer-responsive-grid-link-disable-container"><a href="http://www.wmal.com/2017/08/30/van-swept-away-with-6-relatives-in-harveys-flood-found-in-houston-bayou/?platform=hootsuite&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>
<script id="amp-minify-js-footer">
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>
<link rel='stylesheet' id='amp-minify-css-footer-css'  href='http://www.wmal.com/wp-content/uploads/amp-minify/1494346199.238.footer.css' type='text/css' media='all' />
<script type='text/javascript' src='http://www.wmal.com/wp-content/uploads/amp-minify/1494346199.238.footer.js'></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: "wmalam",
        zindex: 50000,
        theme: ["#000000"],
        position: "bottom",
        debug: true,
        ios_frame: 3,
        autostart: false,
        infoTrayOnLoad: true,
        useTritonPlayer: false,
        promptZag: false,
    });
    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-07T08:58:20.243Z -->
<!-- DISABLE TGMP INFO TRAY -->
<!-- ADDED 2016-08-07T08:58:20.243Z -->
<script>
	if (window.top.tgmp) {
		window.top.tgmp.updateOption('infoTrayOnLoad',false);
	}
</script>
<!-- END DISABLE TGMP INFO TRAY -->

<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>
// Auto-reload (Added 2015-02-03)
window.top._CMLS = window.top._CMLS || {};
window.top._CMLS.autoReload = window.top._CMLS.autoReload || [];
window.top._CMLS.autoReload.push({ timeout: 8 });
</script>

<!---Hilton Tag--->
<div id="ttdUniversalPixelTag93523426102c417c91061ea504cd5436" style="display:none">
            <script src="https://js.adsrvr.org/up_loader.1.1.0.js" type="text/javascript"></script>
            <script type="text/javascript">
                (function(global) {
                    if (typeof TTDUniversalPixelApi === 'function') {
                        var universalPixelApi = new TTDUniversalPixelApi();
                        universalPixelApi.init("nsev7r6", ["1622mxt"], "https://insight.adsrvr.org/track/up", "ttdUniversalPixelTag93523426102c417c91061ea504cd5436");
                    }
                })(this);
            </script>
        </div>

<!---End Hilton Tag---->

<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=600320350';
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 4315/4503 objects using memcache
Page Caching using memcache
Database Caching 89/107 queries in 0.381 seconds using memcache

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