<!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>Houston Relief Rides At SoulCycle | WPLJ-FM | Cumulus</title><link rel='dns-prefetch' href='//www.955plj.nyc' />
<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.955plj.nyc/2017/08/30/houston-relief-rides-at-soulcycle/" />
		<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.955plj.nyc\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.955plj.nyc\/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/wp-content/uploads/sites/304/headway/cache/general-c43d4a1.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-single-css'  href='http://www.955plj.nyc/wp-content/uploads/sites/304/headway/cache/layout-single-f25ef09.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.955plj.nyc/wp-content/uploads/sites/304/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/wp-content/themes/Headway-AMP_CMS/style.css" />

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

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

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

<script>window.DO_NOT_AUTO_SCROLL=true;</script>

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


googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>

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

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

  })
  //-->
  </script> 
<!--ONESTAT SCRIPTCODE END-->

<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','corpDataLayer','GTM-TRBMCX');</script>
<!-- End Google Tag Manager -->

<!-- Rewards Script -->
<script type="text/javascript" src="http://see-p-elb-01.tritondigital.net/widget/see_5330/see.js"></script>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="alternate" type="application/rss+xml" title="WPLJ-FM | Cumulus &raquo; Feed" href="http://www.955plj.nyc/feed/" />
<link rel='shortlink' href='http://www.955plj.nyc/?p=1487503' />
			<script type="text/javascript">
				var _gaq = _gaq || [];

				
									_gaq.push(['b._setAccount', 'UA-52491795-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.955plj.nyc/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.955plj.nyc/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.955plj.nyc/wp-admin/admin-ajax.php"</script>
<!-- AMP CMS DFP custom tags -->
<script type='text/javascript'>
  googletag.cmd.push(function() {
      googletag.pubads().setTargeting('cms-sname', 'WPLJFM  Cumulus');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  Hot AC', 'Market  New York NY']);
      googletag.pubads().setTargeting('cms-ptitle', 'Houston Relief Rides At SoulCycle');
      googletag.pubads().setTargeting('cms-pcat', 'Melony Blog');
  });
</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="WPLJ-FM | Cumulus"/>
  <meta property="og:title" content="Houston Relief Rides At SoulCycle"/>
  <meta property="og:url" content="http://www.955plj.nyc/2017/08/30/houston-relief-rides-at-soulcycle/"/>
  <meta property="og:type" content="article"/>
  <meta property="og:description" content="SoulCycle announced today that they&#039;re hosting relief rides at numerous studios in the US with 100% of the proceeds going to Hurricane Harvey relief organizations. To see the full list of rides click HERE.

NYC/NJ rides are below...

SHORT HILLS
Friday, 9/1 at 4:30PM with VALENTINE

CHELSEA"/>
  <meta property="og:image" content="http://images.tritondigitalcms.com/6616/sites/304/2017/08/30183937/DIgjHaqUMAATcRN.jpg"/>
  <meta property="article:published_time" content="2017-08-30T18:40:16+00:00"/>
  <meta property="article:modified_time" content="2017-08-30T18:40:16+00:00" />
  <meta property="og:updated_time" content="2017-08-30T18:40:16+00:00" />
  <meta property="article:section" content="Melony Blog"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="Houston Relief Rides At SoulCycle"/>
  <meta itemprop="description" content="SoulCycle announced today that they&#039;re hosting relief rides at numerous studios in the US with 100% of the proceeds going to Hurricane Harvey relief organizations. To see the full list of rides click HERE.

NYC/NJ rides are below...

SHORT HILLS
Friday, 9/1 at 4:30PM with VALENTINE

CHELSEA"/>
  <meta itemprop="image" content="http://images.tritondigitalcms.com/6616/sites/304/2017/08/30183937/DIgjHaqUMAATcRN.jpg"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="Houston Relief Rides At SoulCycle"/>
  <meta name="twitter:url" content="http://www.955plj.nyc/2017/08/30/houston-relief-rides-at-soulcycle/"/>
  <meta name="twitter:description" content="SoulCycle announced today that they&#039;re hosting relief rides at numerous studios in the US with 100% of the proceeds going to Hurricane Harvey relief organizations. To see the full list of rides click HERE.

NYC/NJ rides are below...

SHORT HILLS
Friday, 9/1 at 4:30PM with VALENTINE

CHELSEA"/>
  <meta name="twitter:image" content="http://images.tritondigitalcms.com/6616/sites/304/2017/08/30183937/DIgjHaqUMAATcRN.jpg"/>
  <meta name="twitter:card" content="summary_large_image"/>
  <meta name="twitter:creator" content="@twitter.com/melonytorres"/>
 <!-- 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-1487503 single-format-standard custom responsive-grid-enabled responsive-grid-active layout-single-post-1487503 layout-using-single" itemscope itemtype="http://schema.org/WebPage">


<div id="whitewrap">


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

<div class="grid-container clearfix">

<section class="row row-1">

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

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

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

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


<section class="row row-2">

<section class="column column-1 grid-left-0 grid-width-7">
<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://images.tritondigitalcms.com/6616/sites/304/2017/07/05113915/wplj_logo_color_websiteheader.png#aqua_resizer_image_not_local" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

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

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

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

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

        <div class="amp-onair-show-image">
                    <img class="js-image amp-onair-show-image-img" src="http://www.955plj.nyc/wp-content/uploads/sites/304/2015/02/233-race40x40.jpg"  />
            </div>
        
    <div class="amp-onair-show-title">
            <span class="js-title">Race Taylor</span>
        </div>
    
        <div class="amp-onair-show-timeslot js-timeslot" >2:00 p.m. - 7:00 p.m.</div>
        
        
    
</div>
</div></ul>
</div><!-- .block-content -->

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

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

<section class="column column-3 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.955plj.nyc/wp-content/uploads/sites/304/2016/04/listen-live-blue.png" title="Listen Live!!" class="img-1"  /></a></li><li><a href="/listen-live-with-alexa"><img src="http://images.tritondigitalcms.com/6616/sites/304/2018/01/02100224/Alexa-Social-Logo-MUSIC.png" alt="Alexa" class="img-2"  /></a></li><li><a href="http://www.facebook.com/955PLJ" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wplj-fm/wp-content/uploads/sites/304/2014/10/facebook.png" title="Like us on Facebook!" class="img-3"  /></a></li><li><a href="http://twitter.com/955plj" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wplj-fm/wp-content/uploads/sites/304/2014/10/twitter.png" title="Follow us on Twitter!" class="img-4"  /></a></li><li><a href="https://instagram.com/955plj" target="_blank"><img src="http://www.plj.com/wp-content/uploads/sites/304/2015/05/cumulus-instagram.png" title="instagram" class="img-5"  /></a></li><li><a href="http://friendswithbenefits.plj.com" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/wplj-fm/wp-content/uploads/sites/304/2015/01/cumulus-vip.png" title="VIP" class="img-6"  /></a></li></ul></div><!-- .social-icons-container -->
</div><!-- .block-content -->

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

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

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


<section class="row row-3">

<section class="column column-1 grid-left-7 grid-width-15">
<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-96809" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-96809"><a href="http://www.955plj.nyc/toddandjayde/">Todd &#038; Jayde</a>
<ul class="sub-menu">
	<li id="menu-item-101603" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101603"><a href="http://www.955plj.nyc/todd/">Todd</a></li>
	<li id="menu-item-101606" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101606"><a href="http://www.955plj.nyc/jayde/">Jayde</a></li>
	<li id="menu-item-101615" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101615"><a href="http://www.955plj.nyc/annie/">Annie</a></li>
	<li id="menu-item-101612" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101612"><a href="http://www.955plj.nyc/monk/">Monk</a></li>
	<li id="menu-item-1171229" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1171229"><a href="http://www.955plj.nyc/johnny/">Johnny</a></li>
	<li id="menu-item-607450" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-607450"><a href="http://www.955plj.nyc/cindy-v/">Cindy V</a></li>
</ul>
</li>
<li id="menu-item-98513" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-98513"><a href="http://www.955plj.nyc/schedule/">On-Air</a>
<ul class="sub-menu">
	<li id="menu-item-98516" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-98516"><a href="http://www.955plj.nyc/schedule/">Show Schedule</a></li>
	<li id="menu-item-707572" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-707572"><a href="http://www.955plj.nyc/melony/">Melony Torres</a></li>
	<li id="menu-item-96824" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96824"><a href="http://www.955plj.nyc/race/">Race Taylor</a></li>
	<li id="menu-item-96806" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96806"><a href="http://www.955plj.nyc/ralphie/">Ralphie Aversa</a></li>
	<li id="menu-item-96830" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96830"><a href="http://www.955plj.nyc/joey/">Joey Kramer</a></li>
	<li id="menu-item-96818" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96818"><a href="http://www.955plj.nyc/mike/">Mike Allan</a></li>
	<li id="menu-item-128598" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-128598"><a href="http://www.955plj.nyc/vibegrrl/">Vibegrrl</a></li>
	<li id="menu-item-346257" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-346257"><a href="http://www.955plj.nyc/eutopia/">Eutopia</a></li>
	<li id="menu-item-96833" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-96833"><a href="http://www.955plj.nyc/john/">John Foxx</a></li>
</ul>
</li>
<li id="menu-item-1414018" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1414018"><a href="http://www.955plj.nyc/category/stage-17/">Stage 17</a></li>
<li id="menu-item-971522" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-971522"><a href="http://www.955plj.nyc/category/video/">Video</a>
<ul class="sub-menu">
	<li id="menu-item-1413994" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1413994"><a href="http://www.955plj.nyc/category/interviews/">Exclusive Interviews</a></li>
</ul>
</li>
<li id="menu-item-975617" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-975617"><a href="http://www.955plj.nyc/category/photo/">Photos</a></li>
<li id="menu-item-129" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-129"><a>Features</a>
<ul class="sub-menu">
	<li id="menu-item-1346399" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1346399"><a href="http://www.955plj.nyc/95-5-plj-podcasts/">Podcasts</a></li>
	<li id="menu-item-97031" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-97031"><a href="http://www.955plj.nyc/lol/">T&#038;J&#8217;s Love &#8216;Em OR Leave &#8216;Em</a></li>
	<li id="menu-item-97034" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-97034"><a href="http://www.955plj.nyc/blownoff/">T&#038;J&#8217;s Blown Off</a></li>
	<li id="menu-item-1494607" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-1494607"><a href="http://www.955plj.nyc/category/melony-blog/">Melony Torres Blog</a></li>
	<li id="menu-item-95246" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-95246"><a href="http://www.955plj.nyc/category/race-taylor-blog/">Race Taylor Blog</a></li>
	<li id="menu-item-95249" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-95249"><a href="http://www.955plj.nyc/category/ralphie-tonight-blog/">Ralphie Tonight Blog</a></li>
	<li id="menu-item-1302282" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1302282"><a href="http://www.955plj.nyc/category/2-Slices-And-A-Story/">2 Slices and A Story</a></li>
	<li id="menu-item-113465" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-113465"><a href="/appleaday/">Apple A Day</a></li>
</ul>
</li>
<li id="menu-item-95261" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-95261"><a href="http://www.955plj.nyc/station-information/">Connect</a>
<ul class="sub-menu">
	<li id="menu-item-147372" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-147372"><a href="https://www.facebook.com/955PLJ/events">Events</a>
	<ul class="sub-menu">
		<li id="menu-item-516843" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-516843"><a href="https://www.facebook.com/955PLJ/events">95.5 PLJ Events</a></li>
		<li id="menu-item-516846" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-516846"><a href="http://wplj.tunegenie.com/localconcerts/?loc=40.8,-74.0">Concerts</a></li>
	</ul>
</li>
	<li id="menu-item-99260" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99260"><a href="http://www.955plj.nyc/app/">Mobile App</a></li>
	<li id="menu-item-99251" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-99251"><a href="http://www.955plj.nyc/text/">PLJ Mobile Club</a></li>
	<li id="menu-item-95300" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-95300"><a href="http://friendswithbenefits.plj.com/asp2/register.aspx?">Email Updates</a></li>
	<li id="menu-item-374880" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-374880"><a href="/advertise-with-us/">Advertise</a></li>
	<li id="menu-item-95264" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-95264"><a href="http://www.955plj.nyc/station-information/">Station Information</a></li>
	<li id="menu-item-1286709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1286709"><a href="http://www.955plj.nyc/jobs-internships-2/">Jobs &#038; Internships</a></li>
</ul>
</li>
<li id="menu-item-97058" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-97058"><a href="http://www.955plj.nyc/contests/">Contests</a>
<ul class="sub-menu">
	<li id="menu-item-1330934" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1330934"><a href="http://wplj-fm.mygameroom.com">Games</a></li>
	<li id="menu-item-97061" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-97061"><a href="http://www.955plj.nyc/contests/">Contests</a></li>
	<li id="menu-item-95282" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-95282"><a href="http://friendswithbenefits.plj.com/asp2/contests.aspx?status=current">Register to Win VIP Contests</a></li>
	<li id="menu-item-95285" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-95285"><a href="http://friendswithbenefits.plj.com/asp2/register.aspx?">Sign Up for VIP Contests</a></li>
	<li id="menu-item-95288" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-95288"><a href="http://friendswithbenefits.plj.com/asp2/myaccount.aspx">Access Your VIP Profile</a></li>
	<li id="menu-item-1309608" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1309608"><a href="http://www.955plj.nyc/contest-rules-cumulus-new-york/">Contest Rules</a></li>
	<li id="menu-item-128727" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-128727"><a href="/wp-content/uploads/sites/304/2015/08/Official-Rules-5-Seconds-of-Summer-Social-Contest.pdf">Social Media Contest Rules</a></li>
	<li id="menu-item-1496717" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1496717"><a href="http://www.955plj.nyc/winners-declaration-form/">Winner&#8217;s Declaration Form</a></li>
</ul>
</li>
</ul></div><!-- .nav-horizontal nav-align-left -->
</div><!-- .block-content -->

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

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

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

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

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

<section class="column column-3 grid-left-0 grid-width-1">
<div id="block-bmf556c47372cd92" 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/304/2015/06/search.png">
</div><!-- .block-content -->

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

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

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


<section class="row row-4">

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

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

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

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

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

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

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

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


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

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

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

<div class="grid-container clearfix">

<section class="row row-1">

<section class="column column-1 grid-left-0 grid-width-16">
<div id="block-bef58580e10bb57d" class="block block-type-custom-code block-fluid-height" data-alias="share buttons">
<div class="block-content">
<BR><a class="a2a_dd" href="http://www.addtoany.com/share_save">
    <img src="http://cumulus.pro.poolb.tritondigitalcms.com/wwkx-fm/wp-content/uploads/sites/11/2014/10/SocialIcons.png" border="0" alt="Share"/></a><script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>
</div><!-- .block-content -->

</div><!-- #block-bef58580e10bb57d -->
<div id="block-130" class="block block-type-content block-fluid-height" data-alias="">
<div class="block-content">
<div class="loop"><article id="post-1487503" class="post-1487503 post type-post status-publish format-standard has-post-thumbnail hentry category-melony-blog author-mtorres " itemscope itemtype="http://schema.org/BlogPosting"><header><h1 class="entry-title" itemprop="headline">Houston Relief Rides At SoulCycle</h1><div class="entry-meta entry-meta-above">Posted on <time class="entry-date published updated" itemprop="datePublished" datetime="2017-08-30T18:40:16+00:00">August 30, 2017</time></div><!-- .entry-meta --></header><div class="entry-content" itemprop="text"><p>SoulCycle announced today that they&#8217;re hosting relief rides at numerous studios in the US with 100% of the proceeds going to Hurricane Harvey relief organizations. To see the full list of rides click <a href="https://www.soul-cycle.com/community/inside/houston-harvey-relief-support-rides/3013/" target="_blank">HERE</a>.</p>
<p>NYC/NJ rides are below&#8230;</p>
<p><strong>SHORT HILLS</strong><br />
Friday, 9/1 at 4:30PM with VALENTINE</p>
<p><strong>CHELSEA</strong><br />
Saturday, 9/2 at 11:45AM with JOEY</p>
<p><strong>WEST 77TH</strong><br />
Saturday, 9/2 at 2:00PM with SUE</p>
<blockquote class="twitter-tweet">
<p dir="ltr" lang="en">Although we ride in different cities, our hearts are together in support of everyone who&#8217;s been impacted by Harvey: <a href="https://t.co/T09g1scxNP">https://t.co/T09g1scxNP</a> <a href="https://t.co/KcdJqJjUZ1">pic.twitter.com/KcdJqJjUZ1</a></p>
<p>— SoulCycle (@soulcycle) <a href="https://twitter.com/soulcycle/status/903010338085449728">August 30, 2017</a></p></blockquote>
<div id="themify_builder_content-1487503" data-postid="1487503" class="themify_builder_content themify_builder_content-1487503 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.955plj.nyc/category/melony-blog/" rel="category tag">Melony Blog</a></footer><!-- .entry-utility --></article><!-- #post-1487503 --></div>
</div><!-- .block-content -->

</div><!-- #block-130 -->
<div id="block-bvo585806ccb8498" class="block block-type-content block-fluid-height" data-alias="">
<div class="block-content">
<h1 class="block-title"><span>More from 95.5 PLJ</span></h1><div class="loop">

<div class="entry-row">

<article id="post-1496955" class="post-1496955 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-east-village tag-instagram tag-mohegan-lake tag-montvale tag-photos tag-ralphie tag-running tag-t-mobile tag-wegmans tag-yoga author-raversa alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/13/5-things-i-was-thankful-for-last-weekend-photos/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/13151317/wegmans_web.jpg" alt="5 Things I Was Thankful For Last Weekend [Photos]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/13/5-things-i-was-thankful-for-last-weekend-photos/" title="5 Things I Was Thankful For Last Weekend [Photos]" rel="bookmark">5 Things I Was Thankful For Last Weekend [Photos]</a></h2></header></article><!-- #post-1496955 --><article id="post-1496893" class="post-1496893 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-2sas tag-2-slices-and-a-story tag-don-pepi-deli tag-facebook tag-pizza tag-radio-city-music-hall tag-radio-city-rockettes tag-ralphie tag-the-rockettes tag-video author-raversa custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/10/a-new-2-slices-and-a-story-with-the-rockettes-for-national-pizza-day-video/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/10010301/rockettepizza_web.jpg" alt="A New &#8216;2 Slices And A Story&#8217; With The Rockettes For National Pizza Day! [Video]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/10/a-new-2-slices-and-a-story-with-the-rockettes-for-national-pizza-day-video/" title="A New &#8216;2 Slices And A Story&#8217; With The Rockettes For National Pizza Day! [Video]" rel="bookmark">A New &#8216;2 Slices And A Story&#8217; With The Rockettes For National Pizza Day! [Video]</a></h2></header></article><!-- #post-1496893 --><article id="post-1496890" class="post-1496890 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-audio tag-brad-wilson tag-brads-deals tag-bradsdeals-com tag-ralphie tag-rebecca-lehmann tag-valentines-day author-raversa alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/10/bradsdeals-coms-rebecca-lehmann-on-valentines-day-gift-ideas-audio/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/10005151/cupid_web.jpg" alt="BradsDeals.com&#8217;s Rebecca Lehmann On Valentine&#8217;s Day Gift Ideas [Audio]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/10/bradsdeals-coms-rebecca-lehmann-on-valentines-day-gift-ideas-audio/" title="BradsDeals.com&#8217;s Rebecca Lehmann On Valentine&#8217;s Day Gift Ideas [Audio]" rel="bookmark">BradsDeals.com&#8217;s Rebecca Lehmann On Valentine&#8217;s Day Gift Ideas [Audio]</a></h2></header></article><!-- #post-1496890 --><article id="post-1496887" class="post-1496887 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-wwobackstage tag-audio tag-bulova tag-cherry-seaborn tag-ed-sheeran tag-grammys tag-hoodie-allen tag-interview tag-long-island tag-madison-square-garden tag-new-york-city tag-ralphie tag-sadie-newman tag-the-60th-grammys author-raversa custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/10/hoodie-allen-on-ed-sheerans-engagment-grammys-and-new-music-exclusive/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/10004637/hoodie_web.jpg" alt="Hoodie Allen On Ed Sheeran&#8217;s Engagment, GRAMMYs And New Music [Exclusive]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/10/hoodie-allen-on-ed-sheerans-engagment-grammys-and-new-music-exclusive/" title="Hoodie Allen On Ed Sheeran&#8217;s Engagment, GRAMMYs And New Music [Exclusive]" rel="bookmark">Hoodie Allen On Ed Sheeran&#8217;s Engagment, GRAMMYs And New Music [Exclusive]</a></h2></header></article><!-- #post-1496887 -->

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



<div class="entry-row">

<article id="post-1496861" class="post-1496861 post type-post status-publish format-standard has-post-thumbnail hentry category-homepage category-interviews category-new category-photo category-race-taylor-blog category-stage-17 category-video tag-diane-warren tag-excluse tag-hmh-stage-17 tag-interivew tag-race-taylor author-dmulqueen alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/09/diane-warren-interview-live-from-hmh-stage-17-exclusive-video/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/09132733/Diane1200x800.png" alt="Diane Warren Interview LIVE from HMH Stage 17! [Exclusive Video]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/09/diane-warren-interview-live-from-hmh-stage-17-exclusive-video/" title="Diane Warren Interview LIVE from HMH Stage 17! [Exclusive Video]" rel="bookmark">Diane Warren Interview LIVE from HMH Stage 17! [Exclusive Video]</a></h2></header></article><!-- #post-1496861 --><article id="post-1496792" class="post-1496792 post type-post status-publish format-standard has-post-thumbnail hentry category-trending-on-todd-jayde-in-the-morning author-exie custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/08/johnny-crashes-annies-maternity-shoot/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/08080037/Untitled_300x200-1.png" alt="Johnny Crashes Annie&#8217;s Maternity Shoot" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/08/johnny-crashes-annies-maternity-shoot/" title="Johnny Crashes Annie&#8217;s Maternity Shoot" rel="bookmark">Johnny Crashes Annie&#8217;s Maternity Shoot</a></h2></header></article><!-- #post-1496792 --><article id="post-1496783" class="post-1496783 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-audio tag-good360 tag-interview tag-los-angeles-dodgers tag-merchandise tag-mlb tag-new-england-patriots tag-nfl tag-ralphie tag-shari-rudolph tag-super-bowl tag-world-series author-raversa alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/07/heres-where-that-patriots-super-bowl-champions-merch-is-going-interview/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/07151731/sb_web.jpg" alt="Here&#8217;s Where That Patriots &#8216;Super Bowl Champions&#8217; Merch Is Going [Interview]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/07/heres-where-that-patriots-super-bowl-champions-merch-is-going-interview/" title="Here&#8217;s Where That Patriots &#8216;Super Bowl Champions&#8217; Merch Is Going [Interview]" rel="bookmark">Here&#8217;s Where That Patriots &#8216;Super Bowl Champions&#8217; Merch Is Going [Interview]</a></h2></header></article><!-- #post-1496783 --><article id="post-1496747" class="post-1496747 post type-post status-publish format-standard has-post-thumbnail hentry category-ralphie-tonight-blog tag-becketts tag-bloody-mary tag-east-village tag-financial-district tag-instagram tag-kellys tag-little-italy-pizza tag-madison-square-garden tag-new-york-knicks tag-philadelphia tag-photos tag-ralphie tag-rockwood-music-hall tag-super-bowl tag-the-dead-poet tag-tompkins-square-bar tag-uber tag-upper-west-side tag-vegan-buffalo-chicken-dip tag-village-yokocho tag-west-village tag-westville tag-whole-foods tag-wxou-bar author-raversa custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/06/a-weekend-in-nyc-with-no-work-photos/" class="post-thumbnail post-thumbnail-above-title">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/06131547/msg_web.jpg" alt="A Weekend In NYC With No Work [Photos]" width="auto" height="auto" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/06/a-weekend-in-nyc-with-no-work-photos/" title="A Weekend In NYC With No Work [Photos]" rel="bookmark">A Weekend In NYC With No Work [Photos]</a></h2></header></article><!-- #post-1496747 -->

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

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

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

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

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

</div><!-- #block-34 -->
<aside id="block-45" class="free-apps block block-type-widget-area block-fluid-height block-mirrored block-mirroring-bcg5499e7ebdfbb2 block-original-74" data-alias="Home - Free Apps" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<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/95.5-wplj/id334654360?mt=8" target="_blank"><img src="/wp-content/uploads/sites/304/2014/10/appstore.png" border="0"></a>&nbsp;<a href="https://play.google.com/store/apps/details?id=com.airkast.WPLJFM" target="_blank"><img src="/wp-content/uploads/sites/304/2014/10/googleplay.png" border="0"></a>&nbsp;<a href="http://amazon.com/dp/B00FZPO9MK" target="_blank"><img src="/wp-content/uploads/sites/304/2014/10/amazon.png" border="0"></a>
</div>




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

</aside><!-- #block-45 -->
<div id="block-bjh58a49f77a5d3b" class="block block-type-text block-fluid-height block-mirrored block-mirroring-bjh58a49f77a5d3b block-original-bf258a4d336b1c02" data-alias="app">
<div class="block-content">
<div class="entry-content"><p>
	<a href="http://www.955plj.nyc/app/"><img src="http://www.955plj.nyc/wp-content/uploads/sites/304/2017/02/app-300x200-1.jpg" alt=""></a></p></div><!-- .entry-content -->
</div><!-- .block-content -->

</div><!-- #block-bjh58a49f77a5d3b -->
<div id="block-bs7585830bcb08de" class="block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bs7585830bcb08de block-original-bic58a4d4af09cb7" data-alias="newsletter">
<div class="block-content">
 <div class="tl-widget tl-newsletter-widget" ><script src="http://library.tritondigital.com/xinban/lsf/Scripts/trtn.nl.js" type="text/javascript"></script><script type="text/html">{ "requestUrl": "http://api.enticent.com/EmailSignUpSubs.svc/jsonp/EmailSignUp?email=", "subToken": "FF94FFD2-4D23-4F74-B318-A34AD19D3BD0"}</script></div>
</div><!-- .block-content -->

</div><!-- #block-bs7585830bcb08de -->
<div id="block-bsj58a4baf03e58e" class="headlines block block-type-content block-fluid-height block-mirrored block-mirroring-bsj58a4baf03e58e block-original-70" data-alias="Contests">
<div class="block-content">
<h1 class="block-title"><span>Contests</span></h1><div class="loop">

<div class="entry-row">

<article id="post-1496945" class="post-1496945 post type-post status-publish format-standard has-post-thumbnail hentry category-contests author-mwells alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/12/win-your-way-in-to-see-john-splithoff/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/12145350/johnsplithoffpromo.jpg#aqua_resizer_image_not_local" alt="Win Your Way in to See John Splithoff!" width="80" height="80" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/12/win-your-way-in-to-see-john-splithoff/" title="Win Your Way in to See John Splithoff!" rel="bookmark">Win Your Way in to See John Splithoff!</a></h2></header></article><!-- #post-1496945 --><article id="post-1496872" class="post-1496872 post type-post status-publish format-standard has-post-thumbnail hentry category-contests author-mwells custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/09/95-5-pljs-axe-your-ex-party/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/09174812/axeyourex.jpg#aqua_resizer_image_not_local" alt="95.5 PLJ&#8217;s Axe Your Ex Party" width="80" height="80" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/09/95-5-pljs-axe-your-ex-party/" title="95.5 PLJ&#8217;s Axe Your Ex Party" rel="bookmark">95.5 PLJ&#8217;s Axe Your Ex Party</a></h2></header></article><!-- #post-1496872 -->

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



<div class="entry-row">

<article id="post-1496868" class="post-1496868 post type-post status-publish format-standard has-post-thumbnail hentry category-contests author-mwells alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/09/win-tickets-to-see-ed-sheeran-before-you-can-buy-them/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/09161201/Ed-Sheeran-ADDED-1200x1200-East-Rutherford.jpg#aqua_resizer_image_not_local" alt="Win Tickets to See Ed Sheeran… Before You Can Buy Them!" width="80" height="80" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/09/win-tickets-to-see-ed-sheeran-before-you-can-buy-them/" title="Win Tickets to See Ed Sheeran… Before You Can Buy Them!" rel="bookmark">Win Tickets to See Ed Sheeran… Before You Can Buy Them!</a></h2></header></article><!-- #post-1496868 --><article id="post-1496812" class="post-1496812 post type-post status-publish format-standard has-post-thumbnail hentry category-contests category-uncategorized author-mwells custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/08/races-secret-song-at-six-win-a-tropical-vacation/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/12002752/Untitled-design-501.png#aqua_resizer_image_not_local" alt="Race’s Secret Song at Six: Win A Tropical Vacation!" width="80" height="80" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/08/races-secret-song-at-six-win-a-tropical-vacation/" title="Race’s Secret Song at Six: Win A Tropical Vacation!" rel="bookmark">Race’s Secret Song at Six: Win A Tropical Vacation!</a></h2></header></article><!-- #post-1496812 -->

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



<div class="entry-row">

<article id="post-1496653" class="post-1496653 post type-post status-publish format-standard has-post-thumbnail hentry category-contests author-mwells alt custom-query" itemscope itemtype="http://schema.org/BlogPosting">
			<a href="http://www.955plj.nyc/2018/02/02/win-an-office-team-building-experience/" class="post-thumbnail post-thumbnail-left">
				<img src="http://images.tritondigitalcms.com/6616/sites/304/2018/02/02123525/RockinJump_013118_PromoReel.png#aqua_resizer_image_not_local" alt="Win an Office Team Building Experience!" width="80" height="80" itemprop="image" />
			</a>
		<header><h2 class="entry-title" itemprop="headline"><a href="http://www.955plj.nyc/2018/02/02/win-an-office-team-building-experience/" title="Win an Office Team Building Experience!" rel="bookmark">Win an Office Team Building Experience!</a></h2></header></article><!-- #post-1496653 -->

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

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

</div><!-- #block-bsj58a4baf03e58e -->
<div id="block-bzr58a4d8c388906" class="block block-type-text block-fluid-height block-mirrored block-mirroring-bzr58a4d8c388906 block-original-bav58a4d336ac6ac" data-alias="podcast">
<div class="block-content">
<div class="entry-content"><p>
<a href="http://www.955plj.nyc/95-5-plj-podcasts/" target="_blank"><img src="http://www.955plj.nyc/wp-content/uploads/sites/304/2016/11/955-PLJ-podcasts.jpg" alt=""></a>
</p></div><!-- .entry-content -->
</div><!-- .block-content -->

</div><!-- #block-bzr58a4d8c388906 -->
<div id="block-bmc58ed16e923582" class="300x250-ad-2 block block-type-custom-code block-fluid-height block-mirrored block-mirroring-bmc58ed16e923582 block-original-79" data-alias="300x250 Ad 2">
<div class="block-content">
<div align="center"><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>
</div><!-- .block-content -->

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

</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-561774" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-561774"><a href="/1111/11/11/privacy-policy">Privacy Policy</a></li>
<li id="menu-item-561777" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-561777"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-1309614" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1309614"><a href="http://www.955plj.nyc/contest-rules-cumulus-new-york/">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.955plj.nyc/advertise-with-us/">Advertise With Us</a></li>
<li id="menu-item-139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="http://www.955plj.nyc/station-information/">Station Information</a></li>
<li id="menu-item-1309620" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1309620"><a href="http://www.955plj.nyc/jobs-internships-2/">Jobs &#038; Internships</a></li>
<li id="menu-item-792156" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-792156"><a href="http://www.955plj.nyc/wp-content/uploads/sites/304/2018/01/2018-Annual-EEO-Report.pdf">EEO Report</a></li>
<li id="menu-item-1301241" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1301241"><a target="_blank" href="https://publicfiles.fcc.gov/fm-profile/wplj">FCC Public File</a></li>
<li id="menu-item-1492842" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1492842"><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-b9655f17385e47d8" 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-b9655f17385e47d8 -->

</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.955plj.nyc/2017/08/30/houston-relief-rides-at-soulcycle/?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 class="sub-column sub-column-1 column column-1 grid-width-6 grid-left-0">
<div id="block-b4h551196de54e29" class="block block-type-custom-code block-fluid-height" data-alias="Quantcast Tag">
<div class="block-content">
<!-- Quantcast Tag --><script type="text/javascript">
var _qevents = _qevents || [];

(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();

_qevents.push({
qacct:"p-2CRrGMBVuqzTR"
});
</script><noscript>
<div style="display:none;">
<img src="//pixel.quantserve.com/pixel/p-2CRrGMBVuqzTR.gif" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript><!-- End Quantcast tag -->
</div><!-- .block-content -->

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

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

</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.955plj.nyc/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.955plj.nyc/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.955plj.nyc/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.955plj.nyc\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.955plj.nyc\/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.955plj.nyc\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.955plj.nyc\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.955plj.nyc\/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.955plj.nyc/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.955plj.nyc/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0'></script>
<script type='text/javascript' src='http://www.955plj.nyc/wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.955plj.nyc/wp-content/plugins/media-library-assistant/includes/../js/jquery.prettyPhoto.js?ver=1.61'></script>
<script type='text/javascript' src='http://www.955plj.nyc/wp-content/plugins/media-library-assistant/includes/../js/widget-front-end.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.955plj.nyc/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: "wplj",
        zindex: 50000,
        theme: ["#000000"],
        position: "top",
        debug: true,
        ios_frame: 3,
        autostart: false,
        infoTrayOnLoad: true,
        useTritonPlayer: true,
        promptZag: true,
    });
    tgmp.go();
    window.tgmp_rc = new TuneGenieRC(tgmp);
    tgmp_rc.recentSongWidget(document.getElementById('tgrecent'),{});
    tgmp_rc.nowPlayingWidget(document.getElementById('tgnowplaying'),{});
}
</script>
<script type="text/javascript"  class="_tgmp_p" async src="https://mpl.tunegenie.com/js/loader2.min.js"></script>


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

<!-- TGMP PLUGIN ENABLED 2016-08-05T18:41:35.984Z -->
<!-- DISABLE TGMP INFO TRAY -->
<!-- ADDED 2016-08-05T18:41:35.984Z -->
<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=369217984';
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 4464/4681 objects using memcache
Page Caching using memcache
Database Caching 140/156 queries in 0.269 seconds using memcache

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