<!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>House Passes Almost $8 Billion Hurricane Harvey Relief Package | News Talk WBAP-AM</title><link rel='dns-prefetch' href='//www.wbap.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.wbap.com/2017/09/06/house-passes-almost-8-billion-hurricane-harvey-relief-package/" />
		<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.wbap.com\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.wbap.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.wbap.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.wbap.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.wbap.com/wp-content/uploads/sites/274/headway/cache/general-7b9ee93.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-single-css'  href='http://www.wbap.com/wp-content/uploads/sites/274/headway/cache/layout-single-c255af7.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.wbap.com/wp-content/uploads/sites/274/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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.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.wbap.com/wp-content/themes/Headway-AMP_CMS/style.css" />

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

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

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

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

<!--Tout In Video Article --->
<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.wbap.af/tout-in-article-video', 'div-gpt-ad-1500489644039-0').addService(googletag.pubads());
    googletag.pubads().enableSingleRequest();
    googletag.enableServices();
  });
</script>
<!--End Tount--->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="alternate" type="application/rss+xml" title="News Talk WBAP-AM &raquo; Feed" href="http://www.wbap.com/feed/" />


<!-- Favicon -->
<link rel="shortcut icon" type="image/ico" href="http://www.wbap.com/wp-content/uploads/sites/274/2017/03/favicon-wbap.ico" />


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

				
									_gaq.push(['b._setAccount', 'UA-55276308-2']);
					_gaq.push(['b._trackPageview']);
				
				(function() {
				var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
                                    ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
                				var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
				})();
			</script>

        <!-- Customization: Default -->
<style style="text/css" id="customize-styles">
#whitewrap > .wrapper-footer {background-color: #1d1d1d !important; 
background-image: none !important;
}
.wrapper-header .block-type-navigation ul.menu > li, .wrapper-header .block-type-navigation ul.menu > li a {color: #0166bf !important;
}
.wrapper-header .block-type-navigation ul.sub-menu li, .wrapper-header .block-type-navigation ul.sub-menu li a {background-color: #000000 !important; 
background-image: none !important;
color: #ffffff !important;
}
.wrapper-header .block-type-navigation ul.sub-menu {background-color: #000000 !important; 
background-image: none !important;
}

</style>
<script>_AMP.theme.data = [];</script>

				<!-- equalcolumn-ie-fix.js -->
				<!--[if IE 9]>
					<script src="http://www.wbap.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.wbap.com/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.wbap.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', 'News Talk WBAPAM');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  NewsTalk', 'Market  DallasFort Worth TX']);
      googletag.pubads().setTargeting('cms-ptitle', 'House Passes Almost $8 Billion Hurricane Harvey Relief Package');
      googletag.pubads().setTargeting('cms-pcat', ['247 Newsroom News', 'WBAP 247 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="News Talk WBAP-AM"/>
  <meta property="og:title" content="House Passes Almost $8 Billion Hurricane Harvey Relief Package"/>
  <meta property="og:url" content="http://www.wbap.com/2017/09/06/house-passes-almost-8-billion-hurricane-harvey-relief-package/"/>
  <meta property="og:type" content="article"/>
  <meta property="og:description" content=" (CNN) -- The House approved Wednesday an initial $7.9 billion package of disaster relief funds in the wake of Hurricane Harvey, while Senate leaders appear likely to attach the bill to a politically-fraught effort to raise the debt ceiling.

The vote was 419-3. The bill moves to the Senate, which"/>
  <meta property="og:image" content="http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1.png"/>
  <meta property="article:published_time" content="2017-09-06T16:06:01+00:00"/>
  <meta property="article:modified_time" content="2017-09-06T16:06:01+00:00" />
  <meta property="og:updated_time" content="2017-09-06T16:06:01+00:00" />
  <meta property="article:section" content="24/7 Newsroom News"/>
  <meta property="article:section" content="WBAP 24/7 News"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="House Passes Almost $8 Billion Hurricane Harvey Relief Package"/>
  <meta itemprop="description" content=" (CNN) -- The House approved Wednesday an initial $7.9 billion package of disaster relief funds in the wake of Hurricane Harvey, while Senate leaders appear likely to attach the bill to a politically-fraught effort to raise the debt ceiling.

The vote was 419-3. The bill moves to the Senate, which"/>
  <meta itemprop="image" content="http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1.png"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="House Passes Almost $8 Billion Hurricane Harvey Relief Package"/>
  <meta name="twitter:url" content="http://www.wbap.com/2017/09/06/house-passes-almost-8-billion-hurricane-harvey-relief-package/"/>
  <meta name="twitter:description" content=" (CNN) -- The House approved Wednesday an initial $7.9 billion package of disaster relief funds in the wake of Hurricane Harvey, while Senate leaders appear likely to attach the bill to a politically-fraught effort to raise the debt ceiling.

The vote was 419-3. The bill moves to the Senate, which"/>
  <meta name="twitter:image" content="http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1.png"/>
  <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-1087904 single-format-standard custom responsive-grid-enabled responsive-grid-active layout-single-post-1087904 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">

<section class="sub-column sub-column-1 column column-1 grid-width-3 grid-left-0">
<figure id="block-31" class="logo block block-type-image block-fixed-height" data-alias="Logo" itemscope="" itemtype="http://schema.org/ImageObject">
<div class="block-content">
<a href="/" class="image" ><img src="http://www.wbap.com/wp-content/uploads/sites/274/2016/08/wbap-sitelogo.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

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

</section><!-- .sub-column -->
<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-2 grid-width-10">
<aside id="block-b1o552bc1c247e34" class="on-air block block-type-widget-area block-fluid-height" data-alias="Home - On-Air" 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,excerpt,link,name"
	data-ajaxurl="http://www.wbap.com/wp-admin/admin-ajax.php"
	data-updateurl="http://www.wbap.com/shows/feed/?type=json"
	data-memcached="1"
	data-expiration="1518519600">
	
<div class="amp-onair-show nowplaying" >

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

        <div class="amp-onair-show-image">
                    <a class="js-link" href="http://www.wbap.com/shows/chris-salcedo/"><img src="http://www.wbap.com/wp-content/uploads/sites/274/2015/02/Chris-Salcedo-Comm_0578-e1434426202104.jpg" class="amp-onair-show-image-img js-image" /></a>
            </div>
        
    <div class="amp-onair-show-title">
            <a class="js-link" href="http://www.wbap.com/shows/chris-salcedo/"><span class="js-title">Chris Salcedo</span></a>
        </div>
    
        <div class="amp-onair-show-timeslot js-timeslot" >9:00 a.m. - 11:00 a.m.</div>
        
        <div class="amp-onair-show-excerpt js-excerpt"></div>
        
        <div class="amp-onair-personality js-personalities">
            </div>
    
</div>
</div></ul>
</div><!-- .block-content -->

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

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

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


<section class="row row-3">

<section class="column column-1 grid-left-3 grid-width-13">
<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-806008" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-806008"><a href="http://www.wbap.com/">Home</a></li>
<li id="menu-item-46493" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-46493"><a href="http://www.wbap.com/on-air-schedule/">Shows</a>
<ul class="sub-menu">
	<li id="menu-item-39056" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39056"><a href="http://www.wbap.com/wbap-morning-show/">5am-9am WBAP Morning News Team</a></li>
	<li id="menu-item-80703" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-80703"><a href="http://www.wbap.com/chrissalcedo/">9am-11am Chris Salcedo</a></li>
	<li id="menu-item-39047" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39047"><a href="http://www.wbap.com/rush-limbaugh/">11am-2pm Rush Limbaugh</a></li>
	<li id="menu-item-260044" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-260044"><a href="http://www.wbap.com/rick-roberts/">2pm-5pm Rick Roberts</a></li>
	<li id="menu-item-39029" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39029"><a href="http://www.wbap.com/mark-levin/">5pm-8pm Mark Levin</a></li>
	<li id="menu-item-39038" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39038"><a href="http://www.wbap.com/chris-krok/">8pm-12mid Chris Krok</a></li>
	<li id="menu-item-39026" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39026"><a href="http://www.wbap.com/car-pro-show/">Sat 9am-11am Car Pro Show</a></li>
	<li id="menu-item-449249" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-449249"><a href="http://www.wbap.com/red-eye-radio/">Red Eye Radio</a></li>
	<li id="menu-item-39023" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39023"><a href="http://www.wbap.com/weekend-shows/">Weekend Shows</a></li>
</ul>
</li>
<li id="menu-item-38990" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-38990"><a href="http://www.wbap.com/news/">News</a>
<ul class="sub-menu">
	<li id="menu-item-39020" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39020"><a href="http://www.wbap.com/news-staff/">WBAP News Staff</a></li>
	<li id="menu-item-46997" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-46997"><a href="http://www.wbap.com/wbap-traffic-team/">WBAP Traffic Team</a></li>
	<li id="menu-item-42899" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42899"><a href="http://www.wbap.com/pump-watch-dallas/">Pump Watch Dallas</a></li>
	<li id="menu-item-39014" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39014"><a href="http://www.wbap.com/pump-watch/">Pump Watch Ft. Worth</a></li>
	<li id="menu-item-747188" class="menu-item menu-item-type-post_type menu-item-object-amp_feed menu-item-747188"><a href="http://www.wbap.com/newsfeed/business-news/">Business News</a></li>
	<li id="menu-item-182862" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-182862"><a href="http://www.wbap.com/1111/11/11/cnn-news/">CNN News</a></li>
	<li id="menu-item-747182" class="menu-item menu-item-type-post_type menu-item-object-amp_feed menu-item-747182"><a href="http://www.wbap.com/newsfeed/health-news/">Health News</a></li>
	<li id="menu-item-747194" class="menu-item menu-item-type-post_type menu-item-object-amp_feed menu-item-747194"><a href="http://www.wbap.com/newsfeed/political-news/">Political News</a></li>
	<li id="menu-item-747203" class="menu-item menu-item-type-post_type menu-item-object-amp_feed menu-item-747203"><a href="http://www.wbap.com/newsfeed/u-s-news/">U.S. News</a></li>
	<li id="menu-item-747200" class="menu-item menu-item-type-post_type menu-item-object-amp_feed menu-item-747200"><a href="http://www.wbap.com/newsfeed/world-news/">World News</a></li>
	<li id="menu-item-1084633" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1084633"><a>Special Programs</a></li>
</ul>
</li>
<li id="menu-item-38996" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-38996"><a>Weather</a>
<ul class="sub-menu">
	<li id="menu-item-1133373" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1133373"><a href="http://www.wbap.com/weather-forecast/">Brad Barton&#8217;s Weather Forecast</a></li>
	<li id="menu-item-1134086" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1134086"><a href="http://www.wbap.com/weather/">Weather Updates</a></li>
</ul>
</li>
<li id="menu-item-39518" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-39518"><a href="http://www.wbap.com/category/audio-on-demand/">Podcasts</a>
<ul class="sub-menu">
	<li id="menu-item-1093224" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1093224"><a href="http://www.wbap.com/category/audio-on-demand/">Audio On-Demand</a></li>
	<li id="menu-item-38981" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38981"><a href="http://www.wbap.com/podcasts/">WBAP Morning News Podcast</a></li>
	<li id="menu-item-80649" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-80649"><a href="http://www.wbap.com/chris-salcedo/">Chris Salcedo Podcasts</a></li>
	<li id="menu-item-320943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-320943"><a href="http://www.wbap.com/rick-roberts/">Rick Roberts Podcasts</a></li>
	<li id="menu-item-39689" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39689"><a href="http://www.wbap.com/chris-krok-podcasts/">Chris Krok Podcasts</a></li>
	<li id="menu-item-1092956" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1092956"><a href="http://www.wbap.com/lamboonsports/">Lambo On Sports</a></li>
	<li id="menu-item-1097143" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1097143"><a href="http://www.wbap.com/car-pro-show/">Car Pro Show</a></li>
	<li id="menu-item-985807" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-985807"><a href="http://www.wbap.com/2017/06/30/lone-star-scoop-podcast/">Lone Star Scoop Podcast</a></li>
</ul>
</li>
<li id="menu-item-812332" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-812332"><a href="http://www.wbap.com/category/contests/">CONTESTS</a>
<ul class="sub-menu">
	<li id="menu-item-833101" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-833101"><a href="http://www.wbap.com/category/whats-happening/">What&#8217;s Happening</a></li>
	<li id="menu-item-826663" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-826663"><a href="http://vip.wbap.com/">WBAP VIP</a></li>
	<li id="menu-item-826681" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-826681"><a href="http://www.wbap.com/category/contests/">Station Contests</a></li>
</ul>
</li>
<li id="menu-item-1097298" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1097298"><a href="http://www.wbap.com/category/events/">Events</a></li>
<li id="menu-item-839524" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-839524"><a href="http://www.wbap.com/connect/">Connect</a>
<ul class="sub-menu">
	<li id="menu-item-1102877" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1102877"><a href="http://www.wbap.com/station-information/">Contact Us</a></li>
	<li id="menu-item-839536" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-839536"><a href="http://www.wbap.com/station-information/">Station Information</a></li>
	<li id="menu-item-839542" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-839542"><a href="http://www.wbap.com/station-history/">Station History</a></li>
	<li id="menu-item-833065" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-833065"><a href="http://www.wbap.com/community-resources/">Community Resources</a></li>
	<li id="menu-item-1057423" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1057423"><a href="http://www.wbap.com/internship/">Internship</a></li>
</ul>
</li>
</ul></div><!-- .nav-horizontal nav-align-left -->
</div><!-- .block-content -->

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

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

<section class="column column-2 grid-left-0 grid-width-8">
<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.wbap.com/wp-content/uploads/sites/274/2016/01/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/274/2018/01/02105923/Alexa-Social-Logo-MUSIC.png" alt="Alexa" class="img-2"  /></a></li><li><a href="https://www.facebook.com/pages/WBAP/118175174903859" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wbap-af/wp-content/uploads/sites/274/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/wbap247news" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wbap-af/wp-content/uploads/sites/274/2014/12/twitter1.png" alt="Follow us on Twitter" title="Follow us on Twitter" class="img-4"  /></a></li><li><a href="http://vip.wbap.com/" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wbap-af/wp-content/uploads/sites/274/2015/01/cumulus-vip-red.png" alt="VIP" title="VIP" class="img-5"  /></a></li></ul></div><!-- .social-icons-container -->
</div><!-- .block-content -->

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

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

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


<section class="row row-4">

<section class="column column-1 grid-left-5 grid-width-5">
<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><!-- .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-1087904" class="post-1087904 post type-post status-publish format-standard has-post-thumbnail hentry category-news-room-news category-wbap-247-news tag-fema tag-governor-greg-abbott tag-houston tag-hurricane-harvey tag-klif tag-klif-247-news tag-newstalk-820-wbap tag-wbap tag-wbap-247-news author-nicoleosei " itemscope itemtype="http://schema.org/BlogPosting"><header><h1 class="entry-title" itemprop="headline">House Passes Almost $8 Billion Hurricane Harvey Relief Package</h1><div class="entry-meta entry-meta-above">Posted on <time class="entry-date published updated" itemprop="datePublished" datetime="2017-09-06T16:06:01+00:00">September 6, 2017</time></div><!-- .entry-meta --></header><div class="entry-content" itemprop="text"><p><img class="alignleft size-medium wp-image-1087905" src="http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1-300x167.png" alt="" width="300" height="167" srcset="http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1-300x167.png 300w, http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1-150x83.png 150w, http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1-768x426.png 768w, http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1-1024x569.png 1024w, http://images.tritondigitalcms.com/6616/sites/274/2017/09/06155644/Harvey-CNN-Photo-1.png 1203w" sizes="(max-width: 300px) 100vw, 300px" /> (CNN) &#8212; The House approved Wednesday an initial $7.9 billion package of disaster relief funds in the wake of Hurricane Harvey, while Senate leaders appear likely to attach the bill to a politically-fraught effort to raise the debt ceiling.</p>
<p>The vote was 419-3. The bill moves to the Senate, which is expected to vote on the plan this week, the bulk of which will go to Federal Emergency Management Agency, which has warned that it is running out of resources rapidly. In addition to supporting the recovery efforts in Texas, the agency is preparing for Hurricane Irma, another powerful storm that is approaching Puerto Rico and threatens to have a devastating impact on Florida.</p>
<p>But in a new wrinkle that could complicate the debt ceiling fight, Democratic leaders, including House Minority Leader Nancy Pelosi and Senate Minority Leader Chuck Schumer, released a statement Wednesday morning backing only a three-month debt limit increase as part of the Harvey aid package.</p>
<p>While Republican leaders haven&#8217;t said how long they plan to extend the debt limit, it was expected that it would be longer than three months.</p>
<p>&#8220;Democrats are prepared to offer our votes for the Harvey aid package, and a short term debt limit increase of three months,&#8221; Schumer and Pelosi said. &#8220;Given Republican difficulty in finding the votes for their plan, we believe this proposal offers a bipartisan path forward to ensure prompt delivery of Harvey aid as well as avoiding a default, while both sides work together to address government funding, Dreamers, and health care.&#8221;</p>
<p>House Speaker Paul Ryan called the Democratic leaders&#8217; push for a short, three-month increase in the debt limit &#8220;a ridiculous idea.&#8221;</p>
<p>&#8220;I think that&#8217;s ridiculous and disgraceful that they want to play politics with the debt ceiling at this moment when we have fellow citizens in need to respond to these hurricanes so that we do not strand them,&#8221; Ryan told reporters.</p>
<p>For now, the bill that the House will vote on Wednesday &#8212; which does not include a debt ceiling attachment &#8212; is predicted to pass easily, according to Rep. Steny Hoyer, the number two House Democrat. He said Tuesday that he told House Majority Leader Kevin McCarthy &#8220;almost every Democrat, if not every Democrat, would support it and I expect it to pass with overwhelming bipartisan support.&#8221;</p>
<p>McCarthy warned members the House would remain in town to complete work on Harvey aid and depending on how the Senate votes that could mean a final House vote late Friday or Saturday &#8212; according to multiple House GOP members.</p>
<p>Last week, the White House requested $7.85 billion for response and recovery efforts. Most of that money would go to the Federal Emergency Management Agency, while about $450 million would go to the Small Business Administration&#8217;s disaster loan program.</p>
<p>Congress is also expected to authorize another $6.7 billion in expedited aid relief that will be part of a stopgap spending bill to keep the government open until the end of the year. The funding measure must be approved by this month&#8217;s end to avoid a government shutdown.</p>
<p>These numbers, which combined amount to about $15 billion, are just for immediate spending needs after Harvey. Texas Gov. Greg Abbott said Sunday on CNN&#8217;s &#8220;State of the Union<a href="http://www.cnn.com/video/data/2.0/video/politics/2017/09/03/sotu-abbott-cost.cnn.html">&#8221; </a>that he believes the federal government will ultimately need to provide far more than $100 billion. And multiple Republicans tell CNN that with another hurricane threatening to impact Florida later this week and more detailed assessments coming in terms of the costs of recovery is Texas they expect more votes on additional disaster relief this fall.</p>
<p>With a pressing deadline at the end of the month to raise the debt ceiling or go into default, Treasury Secretary Steven Mnuchin said the White House wants Congress to attach the debt ceiling bill to disaster relief aid. Such a strategy might make it easier for the debt ceiling bill to pass, since Republicans are divided on raising the debt limit but Harvey aid has wide bipartisan support.</p>
<p>House Republican leaders recognize that a majority of their own members don&#8217;t want to vote for a measure to raise the debt ceiling. They expect that the Senate &#8212; after the House votes Wednesday &#8212; will take the Harvey funding bill and tack on a provision to avoid a default, and when it is sent over to the House it could pass with mostly Democratic votes.</p>
<p>&#8220;I&#8217;m willing to not say that hurricane relief has to have offsets,&#8221; said Rep. Mark Meadows, chairman of the conservative House Freedom Caucus. &#8220;I&#8217;m willing to do a number of things that a typical conservative would not support because I see the devastation that&#8217;s there, but yet at the same time tying a debt ceiling to it is just using it as leverage to get something done that perhaps should have gotten done in a different manner.&#8221;</p>
<p>Meadows is referencing how conservatives in the House are not pressing so far for the Harvey aid to be accompanied by any spending cuts or offsets &#8212; a position many of them took in 2013 when Congress voted on emergency money after Superstorm Sandy. But several leading Republicans on the right of the House GOP conference are loudly complaining about the expected strategy to tie the increase to the debt limit to the disaster relief legislation.</p>
<p>&#8220;I think it&#8217;s a terrible idea,&#8221; Meadows said. &#8220;Anytime you use a tragedy to advance something that should have had a plan without a hurricane happening is not an appropriate approach.&#8221;</p>
<p>North Carolina Rep. Mark Walker, the leader of another group of fiscal conservatives, said in a written statement, &#8220;If we resort to just kicking the can down the road on the debt, it only shows that Republicans do not take the problem of our $20 trillion debt seriously. Republicans passed spending reforms with Barack Obama as president. We have no excuse why we can&#8217;t do it now with Republican leadership.&#8221;</p>
<p>On the Senate side, Majority Leader Mitch McConnell said Tuesday the three most important items on the GOP&#8217;s agenda<a href="http://www.cnn.com/2017/09/05/politics/donald-trump-mitch-mcconnell-federal-judges/index.html"> </a>are passing disaster relief, preventing a default, and funding the government &#8212; though he did not provide specifics for how and when they will do these priorities.</p>
<p>Sen. John Cornyn, the number two Republican in the Senate, said he would be &#8220;open&#8221; to a bill that attaches a debt ceiling increase to Harvey aid.</p>
<p>&#8220;I would support that,&#8221; Cornyn told CNN as he arrived back at the Capitol from Texas, where he has been dealing with hurricane relief and clean-up efforts.</p>
<p>While his vocal support suggests the idea could get broad support from Republicans, Cornyn, who is the GOP whip, said he had not had time to gauge all his colleagues &#8212; though he added he &#8220;believe(s) that&#8217;s the plan.&#8221;</p>
<p>&#8220;I&#8217;m told if we don&#8217;t raise the debt ceiling, then we can&#8217;t appropriate the additional funds for Harvey on an emergency basis, which we absolutely need to do,&#8221; he added. &#8220;I continue to be worried about the debt, but I don&#8217;t think this is the time to have that debate.&#8221;</p>
<p>The-CNN-Wire<br />
™ &amp; © 2017 Cable News Network, Inc., a Time Warner Company. All rights reserved.</p>
<div id="themify_builder_content-1087904" data-postid="1087904" class="themify_builder_content themify_builder_content-1087904 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.wbap.com/category/news-room-news/" rel="category tag">24/7 Newsroom News</a>, <a href="http://www.wbap.com/category/wbap-247-news/" rel="category tag">WBAP 24/7 News</a></footer><!-- .entry-utility --></article><!-- #post-1087904 --></div>
</div><!-- .block-content -->

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

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

<section class="column column-2 grid-left-0 grid-width-8">
<nav id="block-bt358cc3a31d1d81" class="search-box block block-type-navigation block-fluid-height block-mirrored block-mirroring-bt358cc3a31d1d81 block-original-bk658cc43c85d7d6" data-alias="Search Box" itemscope="" itemtype="http://schema.org/SiteNavigationElement">
<div class="block-content">
<div class="nav-horizontal nav-align-left nav-search-active nav-search-position-right"><div class="nav-search">
		<form method="get" id="searchform" action="http://www.wbap.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-left nav-search-active nav-search-position-right -->
</div><!-- .block-content -->

</nav><!-- #block-bt358cc3a31d1d81 -->
<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 -->
<aside id="block-ba456670e6136bab" class="headlines block block-type-widget-area block-fluid-height block-mirrored block-mirroring-ba456670e6136bab block-original-bw656670ec523611" data-alias="Right Rail Widget Area" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<ul class="widget-area">	
<div class="js-amp-poll" data-post-id="1143583" data-poll-id="poll_widget-2" data-max-choices="1">


<!-- @brian.crigler: before widget, but shouldn't be outside of main container, right? not sure how/why this is necessarsy -->
<li id="poll_widget-2" class="widget widget_poll_widget">

<!--  before title info -->
<h3 class="widget-title"><span class="widget-inner">
<!--  rendered title -->
WBAP News Listener Poll
<!--  after title text -->
</span></h3>

<!--  sponsor, if it's on top -->

<!--  rendered question -->
<div class="question">The Senate takes up the immigration debate this week. How do you feel about the fate of the &#8220;Dreamers&#8221;</div>

<form class="js-amp-poll-answers"></form>


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

</aside><!-- #block-ba456670e6136bab -->
<div id="block-68" class="vip-club-ad block block-type-custom-code block-fluid-height" data-alias="VIP Club Ad">
<div class="block-content">
<a href="#"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wbap-af/wp-content/uploads/sites/274/2014/12/headway-imported-image26.png"></a>
</div><!-- .block-content -->

</div><!-- #block-68 -->
<figure id="block-bkz55280e0f71af4" class="block block-type-image block-fixed-height block-mirrored block-mirroring-bkz55280e0f71af4 block-original-bdy55280f302de35" data-alias="Texas FB logo" itemscope="" itemtype="http://schema.org/ImageObject">
<div class="block-content">
<img src="http://cumulus.pro.poolb.tritondigitalcms.com/wbap-af/wp-content/uploads/sites/274/2015/04/FB-Insurance1.jpg" alt="" title="" itemprop="contentURL"/>
</div><!-- .block-content -->

</figure><!-- #block-bkz55280e0f71af4 -->
<aside id="block-81" class="free-apps block block-type-widget-area block-fluid-height" 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 class="widget widget-no-widgets"><h3 class="widget-title"><span class="widget-inner">No widgets!</span></h3><p>Add widgets to this sidebar in the <a href="http://www.wbap.com/wp-admin/widgets.php">Widgets panel</a> under Appearance in the WordPress Admin.</p></li></ul>
</div><!-- .block-content -->

</aside><!-- #block-81 -->
<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 -->

</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-39569" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-39569"><a href="http://www.wbap.com/2015/01/05/privacy-policy/">Privacy Policy</a></li>
<li id="menu-item-207510" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-207510"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-207513" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-207513"><a href="/1111/11/11/contest-rules">Contest Rules</a></li>
<li id="menu-item-39602" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-39602"><a href="http://www.wbap.com/advertise-with-us/">Advertise With Us</a></li>
<li id="menu-item-141" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-141"><a href="https://www.cumulus.com/work-here/">Employment Opportunities</a></li>
<li id="menu-item-42236" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42236"><a href="http://www.wbap.com/station-information/">Station Information</a></li>
<li id="menu-item-651624" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-651624"><a target="_blank" href="https://publicfiles.fcc.gov/am-profile/wbap">FCC Public File</a></li>
<li id="menu-item-1115552" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1115552"><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-b0955f181092d1eb" 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-b0955f181092d1eb -->

</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.wbap.com/2017/09/06/house-passes-almost-8-billion-hurricane-harvey-relief-package/?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 -->
<div id="block-bfx5a78baf2b2639" class="slider block block-type-custom-code block-fluid-height" data-alias="">
<div class="block-content">
<div id='div-gpt-ad-1516327313851-0'>
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1516327313851-0'); });
</script>
</div>
</div><!-- .block-content -->

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

</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.wbap.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.wbap.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.wbap.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.wbap.com\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.wbap.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.wbap.com\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.wbap.com\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.wbap.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.wbap.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.wbap.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0'></script>
<script type='text/javascript' src='http://www.wbap.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.wbap.com/wp-content/plugins/media-library-assistant/includes/../js/jquery.prettyPhoto.js?ver=1.61'></script>
<script type='text/javascript' src='http://www.wbap.com/wp-content/plugins/media-library-assistant/includes/../js/widget-front-end.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.wbap.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: "wbapam",
        zindex: 50000,
        theme: ["#000000"],
        position: "bottom",
        debug: true,
        ios_frame: 3,
        autostart: false,
        infoTrayOnLoad: true,
        useTritonPlayer: true,
        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-05T03:06:31.670Z -->
<!-- DISABLE TGMP INFO TRAY -->
<!-- ADDED 2016-08-05T03:06:31.670Z -->
<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 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=933310938';
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 3005/3127 objects using memcache
Page Caching using memcache
Database Caching 101/113 queries in 0.239 seconds using memcache

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