<!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>Cumulus | kkoh-am</title><link rel='dns-prefetch' href='//www.kkoh.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.kkoh.com/" />
		<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.kkoh.com\/wp-includes\/js\/wp-emoji.js?ver=4.7.3","twemoji":"http:\/\/www.kkoh.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.kkoh.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.kkoh.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.kkoh.com/wp-content/uploads/sites/229/headway/cache/general-58eeb4f.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-layout-front_page-css'  href='http://www.kkoh.com/wp-content/uploads/sites/229/headway/cache/layout-front_page-c3c353c.css?ver=4.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='headway-responsive-grid-css'  href='http://www.kkoh.com/wp-content/uploads/sites/229/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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.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.kkoh.com/wp-content/themes/Headway-AMP_CMS/style.css" />

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

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

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

});
</script>

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

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

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

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

				<!-- equalcolumn-ie-fix.js -->
				<!--[if IE 9]>
					<script src="http://www.kkoh.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.kkoh.com/wp-admin/admin-ajax.php"</script><script type="text/javascript">var ajaxurl = "http://www.kkoh.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', 'kkoham');
      googletag.pubads().setTargeting('cms-sgroup', ['All Sites', 'Format  NewsTalk', 'Market  Reno NV']);
      googletag.pubads().setTargeting('cms-ptitle', 'Home');
  });
</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="kkoh-am"/>
  <meta property="og:title" content="kkoh-am"/>
  <meta property="og:url" content="http://www.kkoh.com"/>
  <meta property="og:type" content="website"/>
  <meta property="og:description" content="oo9o9io"/>
 <!-- Google+ / Schema.org -->
  <meta itemprop="name" content="kkoh-am"/>
  <meta itemprop="description" content="oo9o9io"/>
 <!-- Twitter Cards -->
  <meta name="twitter:title" content="kkoh-am"/>
  <meta name="twitter:url" content="http://www.kkoh.com"/>
  <meta name="twitter:description" content="oo9o9io"/>
  <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="home page-template-default page page-id-27 custom responsive-grid-enabled responsive-grid-active pageid-27 page-slug-home layout-front_page layout-using-front_page" itemscope itemtype="http://schema.org/WebPage">


<div id="whitewrap">


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

<div class="grid-container clearfix">

<section class="row row-1">

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

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

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

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


<section class="row row-2">

<section class="column column-1 grid-left-0 grid-width-5">
<figure id="block-31" class="logo block block-type-image block-fixed-height" data-alias="Logo" itemscope="" itemtype="http://schema.org/ImageObject">
<div class="block-content">
<a href="/" class="image" ><img src="http://cumulus.pro.poolb.tritondigitalcms.com/kkoh-am/wp-content/uploads/sites/229/2015/02/site-logo1.png" alt="" title="" itemprop="contentURL"/></a>
</div><!-- .block-content -->

</figure><!-- #block-31 -->
<div id="block-bkj54a2b9912881a" class="takeover-left block block-type-custom-code block-fluid-height" data-alias="Skyscraper - Left">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-4'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-4'); });
</script>
</div>

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

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

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

<section class="column column-2 grid-left-0 grid-width-19">

<section class="sub-column sub-column-1 column column-1 grid-width-6 grid-left-0">
<nav id="block-94" class="nav-search block block-type-navigation block-fluid-height" data-alias="Navigation Search" itemscope="" itemtype="http://schema.org/SiteNavigationElement">
<div class="block-content">
<div class="nav-horizontal nav-align-left nav-search-active nav-search-position-left"><div class="nav-search">
		<form method="get" id="searchform" action="http://www.kkoh.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-left -->
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-10 grid-left-0">
<section id="block-30" class="social-nav block block-type-social block-fixed-height" data-alias="Social Navigation">
<div class="block-content">
<div class="social-icons-container"><ul class="social-icons"><li><a href="#"><img src="http://www.kkoh.com/wp-content/uploads/sites/229/2016/04/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/229/2018/01/02092729/Alexa-Social-Logo-MUSIC.png" alt="Alexa" class="img-2"  /></a></li><li><a href="https://www.facebook.com/780KOH" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/kkoh-am/wp-content/uploads/sites/229/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/newstalk780koh" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/kkoh-am/wp-content/uploads/sites/229/2014/12/twitter1.png" alt="Follow us on Twitter" title="Follow us on Twitter" class="img-4"  /></a></li><li><a href="http://kkoh.listenernetwork.com/" target="_blank"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/kkoh-am/wp-content/uploads/sites/229/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><!-- .sub-column -->

<section class="sub-column sub-column-3 column column-3 grid-width-3 grid-left-0">
<div id="block-by15a81c8f7d6776" class="gigya-actions block block-type-custom-code block-fluid-height" data-alias="Gigya Profile Actions">
<div class="block-content">
<div class="see-widget" data-see-type="regUi" data-see-loginbonus="false"></div>
</div><!-- .block-content -->

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

</section><!-- .sub-column -->
<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-41696" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-41696"><a href="http://kkoh.com">Home</a></li>
<li id="menu-item-45506" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-45506"><a href="http://www.kkoh.com/full-schedule/">Shows</a>
<ul class="sub-menu">
	<li id="menu-item-46457" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-46457"><a href="http://www.kkoh.com/?p=46448">Full Lineup</a></li>
	<li id="menu-item-33182" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33182"><a href="http://www.kkoh.com/renos-morning-news-with-ross-monica/">Reno&#8217;s Morning News</a></li>
	<li id="menu-item-33200" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33200"><a href="http://www.kkoh.com/?p=33188">Dan Mason</a></li>
	<li id="menu-item-33179" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33179"><a href="http://www.kkoh.com/?p=33161">Rush Limbaugh</a></li>
	<li id="menu-item-33224" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33224"><a href="http://www.kkoh.com/?p=33215">The Savage Nation</a></li>
	<li id="menu-item-791904" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-791904"><a href="http://www.kkoh.com/the-sean-hannity-show/">The Sean Hannity Show</a></li>
	<li id="menu-item-33212" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33212"><a href="http://www.kkoh.com/?p=33203">Jon Sanchez</a></li>
	<li id="menu-item-33242" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33242"><a href="http://www.kkoh.com/?p=33227">Mark Levin</a></li>
	<li id="menu-item-33257" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33257"><a href="http://www.kkoh.com/?p=33245">John Batchelor</a></li>
	<li id="menu-item-678667" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-678667"><a href="http://www.kkoh.com/the-garden-show/">The Garden Show</a></li>
	<li id="menu-item-678673" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-678673"><a href="http://www.kkoh.com/33326-2/">Bosma on Business</a></li>
	<li id="menu-item-678661" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-678661"><a href="http://www.kkoh.com/weekend-magazine-with-dave-preston/">Weekend Magazine</a></li>
</ul>
</li>
<li id="menu-item-15269" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-15269"><a href="http://www.kkoh.com/kkoh-local-news/">News</a>
<ul class="sub-menu">
	<li id="menu-item-91092" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-91092"><a href="http://www.kkoh.com/1111/11/11/cnn-news/">CNN News</a></li>
</ul>
</li>
<li id="menu-item-45503" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-has-children menu-item-45503"><a href="http://www.kkoh.com">On Demand</a>
<ul class="sub-menu">
	<li id="menu-item-33422" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-33422"><a href="http://www.kkoh.com/kkoh-local-news/">KOH Local News</a></li>
	<li id="menu-item-33437" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33437"><a href="http://www.kkoh.com/renos-morning-news-with-ross-monica/">Reno&#8217;s Morning News</a></li>
	<li id="menu-item-33440" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33440"><a href="http://www.kkoh.com/the-dan-mason-show/">Dan Mason</a></li>
	<li id="menu-item-33446" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-33446"><a href="http://www.kkoh.com/the-jon-sanchez-show/">Jon Sanchez</a></li>
	<li id="menu-item-77091" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77091"><a href="http://www.kkoh.com/the-garden-show/">The Garden Show</a></li>
	<li id="menu-item-77097" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77097"><a href="http://www.kkoh.com/33326-2/">Bosma on Business</a></li>
	<li id="menu-item-121935" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-121935"><a href="http://www.kkoh.com/weekend-magazine-with-dave-preston/">Weekend Magazine</a></li>
	<li id="menu-item-77088" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77088"><a href="http://www.kkoh.com/nevada-outlook/">Nevada Outlook</a></li>
</ul>
</li>
<li id="menu-item-46310" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-46310"><a href="http://www.kkoh.com/?p=83">Contests</a>
<ul class="sub-menu">
	<li id="menu-item-788248" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-788248"><a href="http://www.kkoh.com/koh-contest-rules/">KOH Contest Rules</a></li>
</ul>
</li>
<li id="menu-item-15266" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15266"><a href="http://www.kkoh.com/?p=43607">Calendar</a></li>
<li id="menu-item-782096" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-782096"><a href="http://www.kkoh.com/2018/02/12/kkoh-home-of-the-week/">Home of the Week</a></li>
<li id="menu-item-413307" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-413307"><a href="http://kkoh-am.mygameroom.com">Games</a></li>
</ul></div><!-- .nav-horizontal nav-align-left -->
</div><!-- .block-content -->

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

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

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

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

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

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

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


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

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

<div id="wrapper-9" 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">
<aside id="block-35" class="promo-reel block block-type-widget-area block-fluid-height" data-alias="Home - Promo Reel" itemscope="" itemtype="http://schema.org/WPSideBar">
<div class="block-content">
<ul class="widget-area"><li id="amp_promo_reel-2" class="widget widget_amp_promo_reel sidebar_promo">
<div class="sliderWrapper"><div class="sliderBody" style=""><div class="bxslider" data-navigation-arrows='1' data-rotation-time='4000' data-pager-type='none'><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/sites/229/2018/02/08151324/VGH-2018.jpg);background-color: #000;background-repeat: no-repeat;background-size: contain;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/?p=25608'"><div class="promoCaption bottom"><div class="captionTitle"> </div></div></div><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/sites/229/2018/02/12150132/Picture1.png);background-color: #000;background-repeat: no-repeat;background-size: contain;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/?p=556709'"><div class="promoCaption bottom"><div class="captionTitle">Rancho San Rafael Regional Park</div></div></div><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/sites/229/2018/02/08133339/SteveMillerBand_PeterFrampton_IG1.jpg);background-color: #000;background-repeat: no-repeat;background-size: contain;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/?p=185958'"><div class="promoCaption bottom"><div class="captionTitle">Just Announced!</div><div class="captionTeaser">Tickets On Sale Next Week</div></div></div><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/sites/229/2017/12/26152025/Sean-Hannity-Promo1.png);background-color: #000;background-repeat: no-repeat;background-size: contain;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/?p=791900'"><div class="promoCaption bottom"><div class="captionTitle">HE'S BACK!</div><div class="captionTeaser">Afternoons from 2-5 p.m.</div></div></div><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/sites/229/2018/02/02141133/crossroads-promo-reel.png);background-color: #000;background-repeat: no-repeat;background-size: contain;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/2018/02/05/crossroads-of-the-west-gun-show-2/'"><div class="promoCaption bottom"><div class="captionTitle">For The Novice To Hunter To Avid Collector </div></div></div><div class="sliderItem" style="background-image: url(http://images.tritondigitalcms.com/6616/2018/01/22164920/BlackHistory-PromoReel.jpg);background-color: #000;background-repeat: no-repeat;background-size: cover;background-position: 50% 50%;position: relative;height: 300px;cursor: pointer;" onclick="window.location='http://www.kkoh.com/2018/02/01/celebrating-black-history-month/'"><div class="promoCaption bottom"><div class="captionTitle">Celebrate Black History Month</div></div></div></div></div></div></li><!-- .widget -->
</ul>
</div><!-- .block-content -->

</aside><!-- #block-35 -->
<div id="block-bq55661f3c17fc10" class="mobile-only block block-type-custom-code block-fluid-height" data-alias="Responsive Ad">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-18'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-18'); });
</script>
</div>
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-5 grid-left-0">
<div id="block-bdd54ac1401b0333" class="top-stories-left block block-type-content block-fluid-height" data-alias="Top Stories Left">
<div class="block-content">
<h1 class="block-title"><span>Reno's Morning News</span></h1><div class="loop">

<div class="entry-row">

<article id="post-33152" class="post-33152 page type-page status-publish has-post-thumbnail hentry category-on-air-now category-renos-morning-news tag-at-home tag-cumulus-media tag-cumulus-reno tag-fun-stuff tag-joke-of-the-day tag-kkoh tag-littles-in-waiting tag-monica-jaye tag-morning-drive tag-morning-news tag-mornings tag-news tag-news-talk-780-koh tag-reno tag-reno-news tag-renos-morning-news tag-ross-mitchell tag-weekdays author-jschell custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header></header>
			<a href="http://www.kkoh.com/renos-morning-news-with-ross-monica/" class="post-thumbnail post-thumbnail-above-content">
				<img src="http://images.tritondigitalcms.com/6616/sites/229/2015/03/31111631/WebLogo.jpg#aqua_resizer_image_not_local" alt="Reno&#8217;s Morning News" width="200" height="110" itemprop="image" />
			</a>
		</article><!-- #post-33152 -->

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

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

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-6 grid-left-0">
<div id="block-b3m54ac136ce96bf" class="top-stories-center block block-type-content block-fluid-height" data-alias="Top Stories Center">
<div class="block-content">
<h1 class="block-title"><span>KOH On Demand Newscast</span></h1><div class="loop">

<div class="entry-row">

<article id="post-33416" class="post-33416 page type-page status-publish has-post-thumbnail hentry category-the-news-and-talk-of-nevada-2 tag-back-to-school tag-best-in-the-west-nugget-rib-cookoff tag-burglary tag-california tag-carson-city-news tag-casino tag-college tag-congressman-mark-amodei tag-cops tag-crash tag-crime tag-dayton tag-entertainment tag-event tag-fallon tag-fernley tag-festival tag-fun tag-gardnerville tag-governor-brian-sandoval tag-guns tag-homes tag-hot-august-nights tag-k-9 tag-lake-tahoe tag-lake-tahoe-news tag-las-vegas tag-lyft tag-minden tag-music tag-nevada tag-nevada-news tag-news tag-northern-nevada tag-police tag-race tag-real-estate tag-reno tag-reno-news tag-rent tag-robbers tag-rtc tag-senator-dean-heller tag-sex-offender tag-sheriff tag-shoplifters tag-sparks tag-sparks-news tag-sports-2 tag-susanville tag-uber tag-unr tag-walk-thru tag-walk-thru-wednesday author-jschell alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header></header>
			<a href="http://www.kkoh.com/kkoh-local-news/" class="post-thumbnail post-thumbnail-above-content">
				<img src="http://images.tritondigitalcms.com/6616/sites/229/2015/03/25133341/KOH-On-Demand-Newscast-200x1101.png#aqua_resizer_image_not_local" alt="Top KOH News Stories" width="242" height="111.32" itemprop="image" />
			</a>
		</article><!-- #post-33416 -->

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

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

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

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

<section class="sub-column sub-column-3 column column-3 grid-width-5 grid-left-0">
<div id="block-bnd54ac136ceed8e" class="top-stories-right block block-type-content block-fluid-height" data-alias="Top Stories Right">
<div class="block-content">
<h1 class="block-title"><span>The Dan Mason Show</span></h1><div class="loop">

<div class="entry-row">

<article id="post-33188" class="post-33188 page type-page status-publish has-post-thumbnail hentry category-on-air-now category-the-dan-mason-show author-jschell custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header></header>
			<a href="http://www.kkoh.com/the-dan-mason-show/" class="post-thumbnail post-thumbnail-above-content">
				<img src="http://images.tritondigitalcms.com/6616/sites/229/2015/03/25133512/DAN-MASON-200x110.png#aqua_resizer_image_not_local" alt="The Dan Mason Show" width="200" height="110" itemprop="image" />
			</a>
		</article><!-- #post-33188 -->

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

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

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

</section><!-- .sub-column -->
<div id="block-11" class="sweet-deals-ad-r block block-type-custom-code block-fluid-height responsive-block-hiding-device-smartphones responsive-block-hiding-device-tablets-landscape responsive-block-hiding-device-tablets-portrait responsive-block-hiding-device-computers" data-alias="">
<div class="block-content">
<p>There is no custom code to display.</p>
</div><!-- .block-content -->

</div><!-- #block-11 -->
<div id="block-39" class="local block block-type-content block-fluid-height" data-alias="KOH LOCAL NEWS">
<div class="block-content">
<hgroup><h1 class="block-title"><span>KOH Top Local Stories</span></h1><h2 class="block-subtitle"><!--Sponsored by: <a href="#"><img src=""></a>--></h2></hgroup><div class="loop">

<div class="entry-row">

<article id="post-795702" class="post-795702 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-jparker alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/wcsd-superintendents-contract-to-receive-extension-vote/" title="WCSD Superintendent&#8217;s Contract to Receive Extension Vote" rel="bookmark">WCSD Superintendent&#8217;s Contract to Receive Extension Vote</a></h2></header></article><!-- #post-795702 --><article id="post-795697" class="post-795697 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/nevada-planning-to-separate-from-healthcare-gov/" title="Nevada Planning to Separate From HealthCare.Gov" rel="bookmark">Nevada Planning to Separate From HealthCare.Gov</a></h2></header></article><!-- #post-795697 -->

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



<div class="entry-row">

<article id="post-795695" class="post-795695 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/vegas-metro-taking-scanner-traffic-private/" title="Vegas Metro Taking Scanner Traffic Private" rel="bookmark">Vegas Metro Taking Scanner Traffic Private</a></h2></header></article><!-- #post-795695 --><article id="post-795691" class="post-795691 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/bike-riding-porch-pirate-sought-by-sparks-police/" title="Bike Riding &#8220;Porch Pirate&#8221; Sought by Sparks Police" rel="bookmark">Bike Riding &#8220;Porch Pirate&#8221; Sought by Sparks Police</a></h2></header></article><!-- #post-795691 -->

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



<div class="entry-row">

<article id="post-795689" class="post-795689 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/man-arrested-after-suspicious-death-at-homewood-tahoe/" title="Man Arrested After Suspicious Death at Homewood Tahoe" rel="bookmark">Man Arrested After Suspicious Death at Homewood Tahoe</a></h2></header></article><!-- #post-795689 --><article id="post-795686" class="post-795686 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/lyon-co-sheriff-adds-golden-thistle-to-his-awards-shelf/" title="Lyon Co Sheriff Adds &#8220;Golden Thistle&#8221; to His Awards Shelf" rel="bookmark">Lyon Co Sheriff Adds &#8220;Golden Thistle&#8221; to His Awards Shelf</a></h2></header></article><!-- #post-795686 -->

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



<div class="entry-row">

<article id="post-795669" class="post-795669 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/rural-areas-around-nevada-in-desperate-need-for-foster-parents/" title="Rural Areas Around Nevada in Desperate Need of Foster Parents" rel="bookmark">Rural Areas Around Nevada in Desperate Need of Foster Parents</a></h2></header></article><!-- #post-795669 --><article id="post-795665" class="post-795665 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/major-renovations-planned-for-reno-stead-airport/" title="Major Renovations Planned For Reno-Stead Airport" rel="bookmark">Major Renovations Planned For Reno-Stead Airport</a></h2></header></article><!-- #post-795665 -->

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



<div class="entry-row">

<article id="post-795663" class="post-795663 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/el-dorado-sheriffs-department-investigating-suspicious-death/" title="El Dorado Sheriff&#8217;s Department Investigating Suspicious Death" rel="bookmark">El Dorado Sheriff&#8217;s Department Investigating Suspicious Death</a></h2></header></article><!-- #post-795663 --><article id="post-795660" class="post-795660 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/school-board-will-vote-on-extending-the-contract-of-superintendent-traci-davis/" title="School Board Will Vote on Extending The Contract of Superintendent Traci Davis" rel="bookmark">School Board Will Vote on Extending The Contract of Superintendent Traci Davis</a></h2></header></article><!-- #post-795660 -->

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



<div class="entry-row">

<article id="post-795656" class="post-795656 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/the-city-of-reno-is-looking-for-a-new-flag-design/" title="The City of Reno is Looking For a New Flag Design" rel="bookmark">The City of Reno is Looking For a New Flag Design</a></h2></header></article><!-- #post-795656 --><article id="post-795654" class="post-795654 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/want-to-learn-a-new-skill-how-about-welding/" title="Want to Learn a New Skill? How About Welding?" rel="bookmark">Want to Learn a New Skill? How About Welding?</a></h2></header></article><!-- #post-795654 -->

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



<div class="entry-row">

<article id="post-795652" class="post-795652 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/nevada-water-supply-report-released/" title="Nevada Water Supply Report Released" rel="bookmark">Nevada Water Supply Report Released</a></h2></header></article><!-- #post-795652 --><article id="post-795649" class="post-795649 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/12/nevada-state-treasurers-officer-starts-third-annual-unclaimed-property-auction/" title="Nevada State Treasurer&#8217;s Officer Starts Third Annual Unclaimed Property Auction" rel="bookmark">Nevada State Treasurer&#8217;s Officer Starts Third Annual Unclaimed Property Auction</a></h2></header></article><!-- #post-795649 -->

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



<div class="entry-row">

<article id="post-795445" class="post-795445 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-mmoser alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/10/sparks-police-asks-publics-help-to-identify-suspect/" title="Sparks Police Asks Public&#8217;s Help to Identify Suspect" rel="bookmark">Sparks Police Asks Public&#8217;s Help to Identify Suspect</a></h2></header></article><!-- #post-795445 --><article id="post-795399" class="post-795399 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/09/n-dow-celebrates-wildlife-love-saturday/" title="N-Dow Celebrates Wildlife Love Saturday" rel="bookmark">N-Dow Celebrates Wildlife Love Saturday</a></h2></header></article><!-- #post-795399 -->

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



<div class="entry-row">

<article id="post-795397" class="post-795397 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/09/rpd-makes-arrest-in-murder-case-stolen-law-enforcement-weapons/" title="RPD Makes Arrest in Murder Case, Stolen Law Enforcement Weapons" rel="bookmark">RPD Makes Arrest in Murder Case, Stolen Law Enforcement Weapons</a></h2></header></article><!-- #post-795397 --><article id="post-795394" class="post-795394 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/09/smoking-in-bed-blamed-for-apartment-fire/" title="Smoking in Bed Blamed for Apartment Fire" rel="bookmark">Smoking in Bed Blamed for Apartment Fire</a></h2></header></article><!-- #post-795394 -->

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



<div class="entry-row">

<article id="post-795392" class="post-795392 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/09/reno-crews-respond-to-apartment-fire-on-keystone-avenue/" title="Reno Crews Respond to Apartment Fire on Keystone Avenue" rel="bookmark">Reno Crews Respond to Apartment Fire on Keystone Avenue</a></h2></header></article><!-- #post-795392 --><article id="post-795390" class="post-795390 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-2 author-nfannin custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/02/09/reno-police-identify-victim-in-grove-street-shooting/" title="Reno Police Identify Victim in Grove Street Shooting" rel="bookmark">Reno Police Identify Victim in Grove Street Shooting</a></h2></header></article><!-- #post-795390 -->

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

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

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

<section class="sub-column sub-column-1 column column-1 grid-width-8 grid-left-0">
<div id="block-bud56040730305dc" class="national block block-type-custom-code block-fluid-height" data-alias="National News">
<div class="block-content">
<h1 class="block-title"><span>National News</span></h1><script type='text/javascript' src='http://z.cdn.turner.com/cnn/van/resources/scripts/van-widgets.js'></script>
<div data-cnnvangridwidget data-affiliate="cumuluscorporate" data-category="Nation" data-size="315" data-autostart="false" data-includeraw="false" data-rows="1"></div>
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-8 grid-left-0">
<div id="block-bpg560407302b4ec" class="national block block-type-custom-code block-fluid-height" data-alias="Political News">
<div class="block-content">
<h1 class="block-title"><span>Political News</span></h1><script type='text/javascript' src='http://z.cdn.turner.com/cnn/van/resources/scripts/van-widgets.js'></script>
<div data-cnnvangridwidget data-affiliate="cumuluscorporate" data-category="Politics" data-size="315" data-autostart="false" data-includeraw="false" data-rows="1"></div>
</div><!-- .block-content -->

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

</section><!-- .sub-column -->
<div id="block-75" class="block block-type-custom-code block-fluid-height responsive-block-hiding-device-smartphones responsive-block-hiding-device-tablets-landscape responsive-block-hiding-device-tablets-portrait responsive-block-hiding-device-computers" data-alias="">
<div class="block-content">
nbsp;
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-8 grid-left-0">
<div id="block-102" class="national block block-type-content block-fluid-height" data-alias="National News">
<div class="block-content">
<div class="loop"><article id="post-795713" class="post-795713 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/new-memo-says-no-evidence-of-crime-in-border-agent-death/" title="New memo says no evidence of crime in border agent death" rel="bookmark">New memo says no evidence of crime in border agent death</a></h2></header></article><!-- #post-795713 -->

<div class="entry-row">

<article id="post-795714" class="post-795714 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/woman-pleads-guilty-to-kidnapping-newborn-in-1998-raising-her-to-adulthood/" title="Woman pleads guilty to kidnapping newborn in 1998, raising her to adulthood" rel="bookmark">Woman pleads guilty to kidnapping newborn in 1998, raising her to adulthood</a></h2></header></article><!-- #post-795714 --><article id="post-795627" class="post-795627 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/they-were-supposed-to-take-guns-off-baltimores-streets-theyre-accused-of-robbing-suspects-instead/" title="They were supposed to take guns off Baltimore&#8217;s streets. They&#8217;re accused of robbing suspects instead." rel="bookmark">They were supposed to take guns off Baltimore&#8217;s streets. They&#8217;re accused of robbing suspects instead.</a></h2></header></article><!-- #post-795627 -->

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



<div class="entry-row">

<article id="post-795602" class="post-795602 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/explosion-cuts-power-in-puerto-rico/" title="Explosion cuts power in Puerto Rico" rel="bookmark">Explosion cuts power in Puerto Rico</a></h2></header></article><!-- #post-795602 --><article id="post-795610" class="post-795610 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/michael-jordan-fast-facts/" title="Michael Jordan Fast Facts" rel="bookmark">Michael Jordan Fast Facts</a></h2></header></article><!-- #post-795610 -->

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



<div class="entry-row">

<article id="post-795633" class="post-795633 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/carl-icahn-fast-facts/" title="Carl Icahn Fast Facts" rel="bookmark">Carl Icahn Fast Facts</a></h2></header></article><!-- #post-795633 --><article id="post-795566" class="post-795566 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-us alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/john-mcenroe-fast-facts/" title="John McEnroe Fast Facts" rel="bookmark">John McEnroe Fast Facts</a></h2></header></article><!-- #post-795566 -->

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

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

</div><!-- #block-102 -->
<div id="block-b9t5604073034395" class="national block block-type-custom-code block-fluid-height" data-alias="World News">
<div class="block-content">
<h1 class="block-title"><span>World News</span></h1><script type='text/javascript' src='http://z.cdn.turner.com/cnn/van/resources/scripts/van-widgets.js'></script>
<div data-cnnvangridwidget data-affiliate="cumuluscorporate" data-category="World" data-size="320" data-autostart="false" data-includeraw="false" data-rows="1"></div>
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-8 grid-left-0">
<div id="block-b3955b64440050a3" class="national block block-type-content block-fluid-height" data-alias="Politics">
<div class="block-content">
<div class="loop"><article id="post-795708" class="post-795708 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-politics custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/obama-admin-discussed-how-much-of-russia-meddling-investigation-to-share-with-incoming-trump-team/" title="Obama admin discussed how much of Russia meddling investigation to share with incoming Trump team" rel="bookmark">Obama admin discussed how much of Russia meddling investigation to share with incoming Trump team</a></h2></header></article><!-- #post-795708 -->

<div class="entry-row">

<article id="post-795709" class="post-795709 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-politics alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/pentagon-asks-for-major-budget-increase-amid-threats-from-russia-china-and-north-korea/" title="Pentagon asks for major budget increase amid threats from Russia, China and North Korea" rel="bookmark">Pentagon asks for major budget increase amid threats from Russia, China and North Korea</a></h2></header></article><!-- #post-795709 --><article id="post-795710" class="post-795710 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-politics custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/education-department-says-it-is-no-longer-investigating-transgender-bathroom-complaints/" title="Education Department says it is no longer investigating transgender bathroom complaints" rel="bookmark">Education Department says it is no longer investigating transgender bathroom complaints</a></h2></header></article><!-- #post-795710 -->

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



<div class="entry-row">

<article id="post-795711" class="post-795711 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-politics alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/central-park-five-exonerees-slam-trumps-due-process-remark/" title="Central Park Five exonerees slam Trump&#8217;s &#8216;due process&#8217; remark" rel="bookmark">Central Park Five exonerees slam Trump&#8217;s &#8216;due process&#8217; remark</a></h2></header></article><!-- #post-795711 --><article id="post-795712" class="post-795712 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-politics custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/the-parallel-universe-of-trumps-budget-explained/" title="The parallel universe of Trump&#8217;s budget, explained" rel="bookmark">The parallel universe of Trump&#8217;s budget, explained</a></h2></header></article><!-- #post-795712 -->

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

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

</div><!-- #block-b3955b64440050a3 -->
<div id="block-bt756040730325c5" class="national block block-type-custom-code block-fluid-height" data-alias="Showbiz News">
<div class="block-content">
<h1 class="block-title"><span>Showbiz News</span></h1><script type='text/javascript' src='http://z.cdn.turner.com/cnn/van/resources/scripts/van-widgets.js'></script>
<div data-cnnvangridwidget data-affiliate="cumuluscorporate" data-category="Showbiz" data-size="315" data-autostart="false" data-includeraw="false" data-rows="1"></div>
</div><!-- .block-content -->

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

</section><!-- .sub-column -->
<div id="block-brw5604073036524" class="block block-type-custom-code block-fluid-height" data-alias="">
<div class="block-content">
&nbsp;
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-8 grid-left-0">
<div id="block-b8d55b643ea1e0ff" class="local block block-type-content block-fluid-height" data-alias="World News">
<div class="block-content">
<div class="loop"><article id="post-795583" class="post-795583 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/2018-pyeongchang-winter-olympics-fast-facts/" title="2018 PyeongChang Winter Olympics Fast Facts" rel="bookmark">2018 PyeongChang Winter Olympics Fast Facts</a></h2></header></article><!-- #post-795583 -->

<div class="entry-row">

<article id="post-795536" class="post-795536 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/questions-surround-death-of-environmentalist-in-iranian-prison/" title="Questions surround death of environmentalist in Iranian prison" rel="bookmark">Questions surround death of environmentalist in Iranian prison</a></h2></header></article><!-- #post-795536 --><article id="post-795259" class="post-795259 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/international-cyber-crime-ring-smashed-after-millions-stolen/" title="International cyber crime ring smashed after millions stolen" rel="bookmark">International cyber crime ring smashed after millions stolen</a></h2></header></article><!-- #post-795259 -->

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



<div class="entry-row">

<article id="post-795149" class="post-795149 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/scores-missing-after-deadly-6-4-magnitude-earthquake-strikes-taiwan/" title="Scores missing after deadly 6.4-magnitude earthquake strikes Taiwan" rel="bookmark">Scores missing after deadly 6.4-magnitude earthquake strikes Taiwan</a></h2></header></article><!-- #post-795149 --><article id="post-794928" class="post-794928 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/tens-of-thousands-protests-in-athens-over-macedonia-compromise/" title="Tens of thousands protests in Athens over Macedonia compromise" rel="bookmark">Tens of thousands protests in Athens over Macedonia compromise</a></h2></header></article><!-- #post-794928 -->

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



<div class="entry-row">

<article id="post-794374" class="post-794374 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/detained-americans-fast-facts/" title="Detained Americans Fast Facts" rel="bookmark">Detained Americans Fast Facts</a></h2></header></article><!-- #post-794374 --><article id="post-794356" class="post-794356 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-world alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/hong-kong-police-defuse-unearthed-world-war-ii-bomb/" title="Hong Kong police defuse unearthed World War II bomb" rel="bookmark">Hong Kong police defuse unearthed World War II bomb</a></h2></header></article><!-- #post-794356 -->

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

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

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-8 grid-left-0">
<div id="block-bca55b643f2a9c9d" class="national block block-type-content block-fluid-height" data-alias="Entertainment">
<div class="block-content">
<div class="loop"><article id="post-795417" class="post-795417 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-entertainment custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/house-of-cards-and-the-wire-actor-reg-e-cathey-dead-at-59/" title="&#8216;House of Cards&#8217; and &#8216;The Wire&#8217; actor Reg E. Cathey dead at 59" rel="bookmark">&#8216;House of Cards&#8217; and &#8216;The Wire&#8217; actor Reg E. Cathey dead at 59</a></h2></header></article><!-- #post-795417 -->

<div class="entry-row">

<article id="post-795252" class="post-795252 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-entertainment alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/omarosa-big-brother-co-stars-want-to-stab-her-in-the-back-like-at-white-house/" title="Omarosa: &#8216;Big Brother&#8217; co-stars want to &#8216;stab her in the back&#8217; like at White House" rel="bookmark">Omarosa: &#8216;Big Brother&#8217; co-stars want to &#8216;stab her in the back&#8217; like at White House</a></h2></header></article><!-- #post-795252 --><article id="post-795258" class="post-795258 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-entertainment custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/omarosa-big-brother-co-stars-want-to-stab-her-in-the-back-like-at-white-house-2/" title="Omarosa: &#8216;Big Brother&#8217; co-stars want to &#8216;stab her in the back&#8217; like at White House" rel="bookmark">Omarosa: &#8216;Big Brother&#8217; co-stars want to &#8216;stab her in the back&#8217; like at White House</a></h2></header></article><!-- #post-795258 -->

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



<div class="entry-row">

<article id="post-795090" class="post-795090 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-entertainment alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/john-mahoney-of-frasier-fame-dies-at-77/" title="John Mahoney of &#8216;Frasier&#8217; fame dies at 77" rel="bookmark">John Mahoney of &#8216;Frasier&#8217; fame dies at 77</a></h2></header></article><!-- #post-795090 --><article id="post-795002" class="post-795002 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-entertainment custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/justin-timberlake-pays-tribute-to-prince-during-super-bowl-halftime/" title="Justin Timberlake pays tribute to Prince during Super Bowl halftime" rel="bookmark">Justin Timberlake pays tribute to Prince during Super Bowl halftime</a></h2></header></article><!-- #post-795002 -->

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

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

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

</section><!-- .sub-column -->
<div id="block-beh560407302ea23" class="block block-type-custom-code block-fluid-height" data-alias="">
<div class="block-content">
&nbsp;
</div><!-- .block-content -->

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

<section class="sub-column sub-column-1 column column-1 grid-width-8 grid-left-0">
<div id="block-byr55b64441b5a08" class="business block block-type-content block-fluid-height" data-alias="Business">
<div class="block-content">
<hgroup><h1 class="block-title"><span>Business</span></h1><h2 class="block-subtitle"><!--Sponsored by: <a href="#"><img src=""></a>--></h2></hgroup><div class="loop"><article id="post-795624" class="post-795624 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-business alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/stocks-upswing-infrastructure-plan-tech-put-on-notice/" title="Stocks upswing; Infrastructure plan; Tech put on notice" rel="bookmark">Stocks upswing; Infrastructure plan; Tech put on notice</a></h2></header></article><!-- #post-795624 -->

<div class="entry-row">

<article id="post-795625" class="post-795625 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-business custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/markets-are-off-to-an-upbeat-start-this-week-2/" title="Markets are off to an upbeat start this week" rel="bookmark">Markets are off to an upbeat start this week</a></h2></header></article><!-- #post-795625 --><article id="post-795619" class="post-795619 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-business alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/markets-are-off-to-an-upbeat-start-this-week/" title="Markets are off to an upbeat start this week" rel="bookmark">Markets are off to an upbeat start this week</a></h2></header></article><!-- #post-795619 -->

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



<div class="entry-row">

<article id="post-795549" class="post-795549 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-business custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/new-york-sues-harvey-weinstein-and-his-company/" title="New York sues Harvey Weinstein and his company" rel="bookmark">New York sues Harvey Weinstein and his company</a></h2></header></article><!-- #post-795549 --><article id="post-795543" class="post-795543 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-business alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/trump-to-unveil-infrastructure-plan/" title="Trump to unveil infrastructure plan" rel="bookmark">Trump to unveil infrastructure plan</a></h2></header></article><!-- #post-795543 -->

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

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

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-8 grid-left-0">
<div id="block-bib55b643ef1080c" class="sports block block-type-content block-fluid-height" data-alias="Health">
<div class="block-content">
<hgroup><h1 class="block-title"><span>Health</span></h1><h2 class="block-subtitle"><!--Sponsored by: <a href="#"><img src=""></a>--></h2></hgroup><div class="loop"><article id="post-795626" class="post-795626 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-health custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/israel-develops-pocket-size-device-to-test-for-heart-attacks/" title="Israel develops pocket-size device to test for heart attacks" rel="bookmark">Israel develops pocket-size device to test for heart attacks</a></h2></header></article><!-- #post-795626 -->

<div class="entry-row">

<article id="post-795550" class="post-795550 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-health alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/darkest-material-on-earth-creates-a-schism-in-space-for-winter-olympics/" title="Darkest material on Earth creates a &#8216;schism in space&#8217; for Winter Olympics" rel="bookmark">Darkest material on Earth creates a &#8216;schism in space&#8217; for Winter Olympics</a></h2></header></article><!-- #post-795550 --><article id="post-795545" class="post-795545 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-health custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/cnn-exclusive-california-launches-investigation-following-stunning-admission-by-aetna-medical-director/" title="CNN Exclusive: California launches investigation following stunning admission by Aetna medical director" rel="bookmark">CNN Exclusive: California launches investigation following stunning admission by Aetna medical director</a></h2></header></article><!-- #post-795545 -->

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



<div class="entry-row">

<article id="post-795454" class="post-795454 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-health alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/after-70-years-of-universal-health-care-is-the-nhs-at-a-crisis-point/" title="After 70 years of universal health care, is the NHS at a crisis point?" rel="bookmark">After 70 years of universal health care, is the NHS at a crisis point?</a></h2></header></article><!-- #post-795454 --><article id="post-795336" class="post-795336 feed_posts type-feed_posts status-publish has-post-thumbnail hentry category-cnn-health custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/news/cornell-fraternity-on-probation-for-secret-pig-roast-sex-contest/" title="Cornell fraternity on probation for secret &#8216;pig roast&#8217; sex contest" rel="bookmark">Cornell fraternity on probation for secret &#8216;pig roast&#8217; sex contest</a></h2></header></article><!-- #post-795336 -->

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

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

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

</section><!-- .sub-column -->
<div id="block-89" class="block block-type-custom-code block-fluid-height responsive-block-hiding-device-smartphones responsive-block-hiding-device-tablets-landscape responsive-block-hiding-device-tablets-portrait responsive-block-hiding-device-computers" data-alias="">
<div class="block-content">
&nbsp;
</div><!-- .block-content -->

</div><!-- #block-89 -->
<div id="block-bov55b6460b80076" class="video block block-type-custom-code block-fluid-height" data-alias="Golf Player">
<div class="block-content">
<h1 class="block-title"><span>SPORTS HIGHLIGHTS</span></h1><div class='s2nPlayer' data-type='full' data-fk='6elYPDAX'></div><script type='text/javascript' src='http://embed.sendtonews.com/player2/embedcode.php?cid=5412' data-type='s2nScript'></script>

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

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

<section class="sub-column sub-column-1 column column-1 grid-width-8 grid-left-0">
<div id="block-48" class="facebook block block-type-custom-code block-fluid-height" data-alias="Facebook Widget">
<div class="block-content">
<div class="fb-page" data-href="https://www.facebook.com/780KOH" data-tabs="timeline" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/780KOH"><a href="https://www.facebook.com/780KOH">News Talk 780 KOH</a></blockquote></div></div>
</div><!-- .block-content -->

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

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

<section class="sub-column sub-column-2 column column-2 grid-width-8 grid-left-0">
<div id="block-49" class="twitter block block-type-custom-code block-fluid-height" data-alias="Twitter Widget">
<div class="block-content">
<a class="twitter-timeline" data-height="450" href="https://twitter.com/NewsTalk780KOH">Tweets by NewsTalk780KOH</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div><!-- .block-content -->

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

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

</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" data-alias="300x250 Ad 1">
<div class="block-content">
<div id='div-gpt-ad-1418849849333-0'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1418849849333-0'); });
</script>
</div>
</div><!-- .block-content -->

</div><!-- #block-34 -->
<div id="block-38" class="sweet-deals-ad block block-type-custom-code block-fluid-height" data-alias="Sweet Deals Ad">
<div class="block-content">
<a href="http://reno.sweetdealscumulus.com/"><img src="http://cumulus.pro.poolb.tritondigitalcms.com/kkoh-am/wp-content/uploads/sites/229/2014/12/headway-imported-image6.png"></a>
</div><!-- .block-content -->

</div><!-- #block-38 -->
<div id="block-33" class="weather block block-type-custom-code block-fluid-height" data-alias="Weather">
<div class="block-content">
<hgroup><h1 class="block-title"><span>Local Weather</span></h1><h2 class="block-subtitle"><!--Sponsored by: <a href="#"><img src=""></a>--></h2></hgroup><a href="http://www.accuweather.com/en/us/reno-nv/89501/weather-forecast/329507" class="aw-widget-legal">
<!--
By accessing and/or using this code snippet, you agree to AccuWeather’s terms and conditions (in English) which can be found at http://www.accuweather.com/en/free-weather-widgets/terms and AccuWeather’s Privacy Statement (in English) which can be found at http://www.accuweather.com/en/privacy.
-->
</a><div id="awcc1438011960099" class="aw-widget-current"  data-locationkey="329507" data-unit="f" data-language="en-us" data-useip="false" data-uid="awcc1438011960099"></div><script type="text/javascript" src="http://oap.accuweather.com/launch.js"></script>
</div><!-- .block-content -->

</div><!-- #block-33 -->
<aside id="block-45" 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 id="text-3" class="widget widget_text">
			<div class="textwidget"><div align="center">
<a href="https://itunes.apple.com/us/app/news-talk-780-koh/id464189749?mt=8" target="_blank"><img src="/wp-content/uploads/sites/229/2014/10/appstore.png" border="0"></a>&nbsp;<a href="https://play.google.com/store/apps/details?id=com.airkast.KKOHAM" target="_blank"><img src="/wp-content/uploads/sites/229/2014/10/googleplay.png" border="0"></a>&nbsp;<a href="http://amazon.com/dp/B00G48QANI" target="_blank"><img src="/wp-content/uploads/sites/229/2014/10/amazon.png" border="0"></a>
</div></div>
		</li><!-- .widget -->
</ul>
</div><!-- .block-content -->

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

</div><!-- #block-36 -->
<div id="block-43" class="headlines block block-type-content block-fluid-height" data-alias="Blogs">
<div class="block-content">
<hgroup><h1 class="block-title"><span>Blogs</span></h1><h2 class="block-subtitle"><!--Sponsored by: <a href="#"><img src=""></a>--></h2></hgroup><div class="loop">

<div class="entry-row">

<article id="post-794160" class="post-794160 post type-post status-publish format-standard hentry category-the-news-and-talk-of-nevada-blog category-producer-jake author-jparker alt custom-query" itemscope itemtype="http://schema.org/BlogPosting"><header><h2 class="entry-title" itemprop="headline"><a href="http://www.kkoh.com/2018/01/25/smile-and-nod/" title="Smile and Nod" rel="bookmark">Smile and Nod</a></h2></header><div class="entry-summary entry-content" itemprop="text"><p>By J.T. Parker The air was biting as the marchers covered their ears with their pink knitted beanies, waving signs that may as well have read “I hate you straight, white man.” I kept my mouth shut as I tried to blend in, hoping the cold (and not my frustration) would be perceived as the&hellip;</p>
</div><!-- .entry-summary.entry-content --></article><!-- #post-794160 -->

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

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

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

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

</div><!-- #block-44 -->
<div id="block-46" class="300x250-ad-2 block block-type-custom-code block-fluid-height" 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-10" class="wrapper wrapper-fluid wrapper-fixed-grid grid-fluid-24-32-10 responsive-grid 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-125316" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-125316"><a href="/1111/11/11/privacy-policy">Privacy Policy</a></li>
<li id="menu-item-125319" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-125319"><a href="/1111/11/11/terms-of-service">Terms of Service</a></li>
<li id="menu-item-125322" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-125322"><a href="/1111/11/11/contest-rules">Contest Rules</a></li>
<li id="menu-item-137" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-137"><a href="http://www.kkoh.com/advertise-with-us/">Advertise With Us</a></li>
<li id="menu-item-139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="http://www.kkoh.com/station-information/">Station Information</a></li>
<li id="menu-item-141" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-141"><a href="http://www.cumulus.com/careers/">Employment Opportunities</a></li>
<li id="menu-item-789009" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-789009"><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-bfs55c9ff9cd9c46" 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-bfs55c9ff9cd9c46 -->

</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.kkoh.com/?full-site=true" rel="nofollow" class="footer-responsive-grid-link footer-responsive-grid-disable footer-link">View Full Site</a></p>
</div><!-- .footer -->
</div><!-- .footer-container -->
</div><!-- .block-content -->

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

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

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


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

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



<script>_AMP.theme.init();</script>
<link rel='stylesheet' id='media_library_assistant-plugin-styles-css'  href='http://www.kkoh.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.kkoh.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.kkoh.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.kkoh.com\/wp-content\/plugins\/themify-builder\/themify","TB":"1","map_key":null,"includesURL":"http:\/\/www.kkoh.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.kkoh.com\/wp-content\/plugins\/themify-builder\/img\/blank.png","backgroundVideoLoop":"yes","builder_url":"http:\/\/www.kkoh.com\/wp-content\/plugins\/themify-builder","framework_url":"http:\/\/www.kkoh.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.kkoh.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.kkoh.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0'></script>
<script type='text/javascript' src='http://www.kkoh.com/wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.7.3'></script>
<script type='text/javascript' src='http://www.kkoh.com/wp-content/plugins/media-library-assistant/includes/../js/jquery.prettyPhoto.js?ver=1.61'></script>
<script type='text/javascript' src='http://www.kkoh.com/wp-content/plugins/media-library-assistant/includes/../js/widget-front-end.js?ver=1512399620'></script>
<script type='text/javascript' src='http://www.kkoh.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,triton_see";
</script>
<script type="text/javascript" class="_tgmp_p">
function onTuneGenieMediaPlayerLoaded() {
    window.tgmp=new TuneGenieMediaPlayer('playerbar', {
        brand: "kkoham",
        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-06T19:45:49.165Z -->


<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=29710898';
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 4418/5240 objects using memcache
Page Caching using memcache
Database Caching 95/221 queries in 1.852 seconds using memcache

Served from: www.1460wrad.com @ 2018-02-12 21:46:19 by W3 Total Cache
-->