<!DOCTYPE html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en" class="ts_v3 charlotte_theme tsTheme_17 luna_theme is-mobile androidos os-major-version-7 os-version-7_0" ng-app="themeApp" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>WDEV | Waterbury, VT</title>
<!-- preconnecting / preloading -->
<link rel="preconnect" as="style" id="jquery-ui-css-preload" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.min.css?ver=248_11" crossorigin/>
<!-- end of preconnecting / preloading -->
<!-- links to styles -->
<link rel="stylesheet" id="jquery-ui-css" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.min.css?ver=248_11" type="text/css" media="all" />
<!-- from beacon-easton theme definition front_actions() -->
<link rel="preconnect" id="Source-Sans-Pro-css-preconnect" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C700&ver=248_11" />
<link rel="stylesheet" id="Source-Sans-Pro-css" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C700&ver=248_11" type="text/css" media="all"/>
<link rel="stylesheet" id="theme-css" href="https://wdevradio.com/cms_websites/css/dist/beacon-theme_charlotte/theme.css?ver=1" type="text/css" media="all and (min-width:0px)"/>
<link rel="stylesheet" id="customize-css" href="https://wdevradio.com/cms_websites/cms_theme_custom_css.php?ver=248_11" type="text/css" media="all"/>
<!-- from _the_list -->
<!-- general links to JS for all themes-->
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script> -->
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-migrate-1.4.1.min.js"></script> -->
<!-- <script type="text/javascript" src="https://tsm-js.s3.amazonaws.com/jquery.validate.js?ver=248_11"></script> -->
<!-- <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js?ver=248_11"></script> -->
<!-- from current/wp-content/themes/tsm-theme-1/plugins/_the_list/_the_list.php -->
<!-- <script type="text/javascript" src="https://tsm-js.s3.amazonaws.com/jquery.sonar.min.js?ver=248_11"></script> -->
<!-- <script type="text/javascript" src="https://wdevradio.com/wp-content/themes/beacon-easton/js/nwmatcher.js"></script> -->
<!-- <script type="text/javascript" src="https://wdevradio.com/wp-content/themes/beacon-easton/js/modernizr-custom-11917.js"></script> -->
<script type="text/javascript" src="https://wdevradio.com/cms_websites/js/dist/shared/external/scripts.min.js"></script>
<script type="text/javascript" src="https://wdevradio.com/cms_websites/tools/AdminBarAnalytics/js/external-tracking.min.js"></script>
<link rel="shortcut icon" sizes="16x16 32x32 64x64" href="/files/2023/06/wdev.png?w=196&h=196&zc=0">
<meta property="og:image" content="/files/2024/12/cropUIEQVKHH-Presenter-WoodinJ2.jpg"/>
<meta property="og:image" content="/files/2025/01/image3.jpg"/>
<meta property="og:image" content="/files/2024/09/Outlook-pem3ipiv2.jpg"/>
<meta property="og:image" content="/files/2025/03/untitled1.jpeg"/>
<meta property="og:image" content="/files/2025/03/time-of-monsters.jpg"/>
<meta property="og:image" content="/files/2025/03/american-prestige.jpg"/>
<meta property="og:image" content="/files/2025/03/making-sense.jpg"/>
<meta property="og:image" content="/files/2025/03/tech.jpg"/>
<meta property="og:image" content="/files/2025/03/american-prestige.jpg"/>
<meta property="og:image" content="/files/2023/05/bigstock-View-From-The-Summit-Of-Mount--464387437.jpg"/>
<meta property="og:title" content="WDEV | Waterbury, VT"/>
<meta property="og:site_name" content="WDEV"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://wdevradio.com"/>
<meta property="og:description" content="WDEV | Waterbury, VT"/>
<meta name="description" itemprop="description" content="WDEV | Waterbury, VT" />
<link rel="canonical" href="https://wdevradio.com" />
<link rel="stylesheet" id="custom-css-css" href="https://wdevradio.com/cms_websites/cms_custom_css.php?ver=248_11" type="text/css" media="all"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css">
<script>
jQuery("document").ready(function($){ $(".toggle-title").click(function () { $(this).nextAll(".toggle-details").first().toggle("fast"); }); });
</script>
<script>jQuery("document").ready(function($){ $(".toggle-title").on("click", function(){ $(this).toggleClass("active"); }); });
</script>
<script>
jQuery(document).ready(function(){jQuery(".b2b-location-detail-info").after("<span><br/><b>HOURS</b><br/>24/7</span>");});</script>
<script>
jQuery("document").ready(function($){
var nav = $('.tsH');
$(window).scroll(function () {
if ($(this).scrollTop() > 140) {
nav.addClass("fixed");
} else {
nav.removeClass("fixed");
}
});
});
</script>
<script>
(function($) {
/*** Copyright 2012, Digital Fusion* Licensed under the MIT license.* http://teamdf.com/jquery-plugins/license/* @author Sam Sehnert * @desc A small plugin that checks whether elements are within*the user visible viewport of a web browser.*only accounts for vertical position, not horizontal.*/
$.fn.visible = function(partial) {
var $t = $(this),
$w = $(window),
viewTop = $w.scrollTop(),
viewBottom = viewTop + $w.height(),
_top = $t.offset().top,
_bottom = _top + $t.height(),
compareTop = partial === true ? _bottom : _top,
compareBottom = partial === true ? _top : _bottom;
return ((compareBottom <= viewBottom) && (compareTop >= viewTop));
};
})(jQuery);
</script>
<script>
$(window).scroll(function(event) {
$(".tsD_slide .tsI").each(function(i, el) {
var el = $(el);
if (el.visible(true)) {
el.addClass("come-in");
}
});
});
</script>
<script>
$(window).scroll(function(event) {
$(".tsD_slideR .tsI").each(function(i, el) {
var el = $(el);
if (el.visible(true)) {
el.addClass("slideR");
}
});
});
</script>
<script>
$(window).scroll(function(event) {
$(".tsD_slideL .tsI").each(function(i, el) {
var el = $(el);
if (el.visible(true)) {
el.addClass("slideL");
}
});
});
</script>
<script type="text/javascript">
//<![CDATA[
var b2b = {
'isTestingUser' : 0,
'tag':'248_11',
'theme': 'beacon-theme_charlotte',
'blog_id': '',
'website_id': 75144,
'CID':'', // later
'gaId':'UA-160592828-231',
'page_type': '',
'isPage': '',
'post_id': '875845',
'home_url':'https://wdevradio.com',
'admin_url':'',
'plugins_url':'',
'basename':'index.php',
'isMobile':1,
'isTablet':0,
'isFrontPage': 1,
'isPost':0,
'isSuperAdmin':0,
'isBeacon':1,
'isB2Badmin':0,
'hasStore':0,
'primary_menu': 0 ,
'qstr':[],
'containerClasses':{},
'post_password_required':0,
'onFly':0
};
//]]>
</script>
<script type="text/javascript">
window.b2b = window.b2b || {};
window.b2b.GA = {"accounts":["UA-160592828-231","UA-26792682-1"]};
</script>
<script type="text/javascript">
var analyticsFileTypes = [''];
var analyticsSnippet = 'enabled';
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-160592828-231']);
_gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google
_gaq.push(['_setCampaignCookieTimeout', 0]);
_gaq.push(['_trackPageview']);
_gaq.push(['_setAccount', 'UA-26792682-1']);
_gaq.push(['_setCampaignCookieTimeout', 0]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Master Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PF8RFHR03F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PF8RFHR03F');
</script>
<!-- Ga4 Script-->
<!-- Elapsed Time: 0.0024909973144531s -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZFR72CV7SY"></script>
<script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-ZFR72CV7SY'); </script>
<!-- Custom CTC & CTD events -->
<script>
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll("a[href^='tel']").forEach(function(el){
el.addEventListener('click', function (event) {
gtag('event', 'call_click');
});
});
document.querySelectorAll("a[href^='https://maps.google.com/maps']").forEach(function(el){
el.addEventListener('click', function (event) {
gtag('event', 'directions_click');
});
});
}, false);
</script>
</head>
<body id="top"class=" home page page-id-875845 page-template-default ve-iframe beacon unknown">
<div id="wrapper" class="tsW">
<header class="tsH expand">
<div class="tsH_wrp">
<div id='_the_logo' class='_is_plugin header-logo' slug='_the_logo' data-extra-args='{"section":"header"}'>
<h2 class='logo logo-v2'>
<div data-numslots="1" class="logo-variation logo-variation-header"><div class="logo-slot pct100 slot_0 slot-type-image align-center"><a class="ve_no_url" href="https://wdevradio.com" title="WDEV" rel="home"><img src="/files/2023/05/am.png" /></a></div></div><div data-numslots="1" class="logo-variation logo-variation-mobile"><div class="logo-slot pct100 slot_0 slot-type-image align-center"><a class="ve_no_url" href="https://wdevradio.com" title="WDEV" rel="home"><img src="/files/2023/05/am.png" /></a></div></div>
</h2></div>
<div id="access" class="original_access">
<div class="menu align-right">
<ul id="menu-primary-menu" rel="dennis" class="sf-menu sf-menu_bg"><li class=" menu-item menu-item-973868 menu-item-object-page menu-item-type-post_type current-menu-item current_page_item page_item page-item-875845" id="menu-item-973868"><a href="https://wdevradio.com/">Home</a></li><li class=" menu-item menu-item-973799 menu-item-object-custom menu-item-type-custom " id="menu-item-973799"><a href="https://player.listenlive.co/67961" target="_blank">Listen Live</a></li><li class=" menu-item menu-item-866446 menu-item-object-page menu-item-type-post_type " id="menu-item-866446"><a href="https://wdevradio.com/news/">News</a></li><li class=" menu-item menu-item-has-children menu-item-871210 menu-item-object-custom menu-item-type-custom " id="menu-item-871210"><a href="https://weatheringheights1.wordpress.com/">Weather</a><ul class="sub-menu"><li class=" menu-item menu-item-857778 menu-item-object-custom menu-item-type-custom " id="menu-item-857778"><a href="https://blubrry.com/rogerhillsweatherclassroom/" target="_blank">Roger Hill Weather Classroom</a></li><li class=" menu-item menu-item-857779 menu-item-object-page menu-item-type-post_type " id="menu-item-857779"><a href="https://wdevradio.com/school-closings/">School Closings</a></li></ul>
</li><li class=" menu-item menu-item-has-children menu-item-903589 menu-item-object-page menu-item-type-post_type " id="menu-item-903589"><a href="https://wdevradio.com/events/">Events</a><ul class="sub-menu"><li class=" menu-item menu-item-967651 menu-item-object-page menu-item-type-post_type " id="menu-item-967651"><a href="https://wdevradio.com/antarctica/">Antarctica</a></li></ul>
</li><li class=" menu-item menu-item-has-children menu-item-860935 menu-item-object-custom menu-item-type-custom " id="menu-item-860935"><a href="#">Programs</a><ul class="sub-menu"><li class=" menu-item menu-item-861228 menu-item-object-page menu-item-type-post_type " id="menu-item-861228"><a href="https://wdevradio.com/birthdays/" target="_blank">Birthdays</a></li><li class=" menu-item menu-item-860947 menu-item-object-custom menu-item-type-custom " id="menu-item-860947"><a href="https://podcasters.spotify.com/pod/show/brady-farkas3" target="_blank">The Brady Farkas Show</a></li><li class=" menu-item menu-item-861247 menu-item-object-page menu-item-type-post_type " id="menu-item-861247"><a href="https://wdevradio.com/contests/" target="_blank">Contests</a></li><li class=" menu-item menu-item-860949 menu-item-object-custom menu-item-type-custom " id="menu-item-860949"><a href="https://audioboom.com/channel/johnbatchelor" target="_blank">Eye on the World with John Batchelor</a></li><li class=" menu-item menu-item-860950 menu-item-object-custom menu-item-type-custom " id="menu-item-860950"><a href="https://blubrry.com/forthebirds/" target="_blank">For The Birds</a></li><li class=" menu-item menu-item-861253 menu-item-object-page menu-item-type-post_type " id="menu-item-861253"><a href="https://wdevradio.com/the-getaway-with-greg-hooker/" target="_blank">The Getaway With Greg Hooker</a></li><li class=" menu-item menu-item-860952 menu-item-object-custom menu-item-type-custom " id="menu-item-860952"><a href="https://blubrry.com/gardenwdev/" target="_blank">In the Garden</a></li><li class=" menu-item menu-item-860953 menu-item-object-custom menu-item-type-custom " id="menu-item-860953"><a href="https://blubrry.com/musictogotothedumpby/" target="_blank">Music to Go to the Dump By</a></li><li class=" menu-item menu-item-861256 menu-item-object-page menu-item-type-post_type " id="menu-item-861256"><a href="https://wdevradio.com/party-calendar/" target="_blank">Party Calendar</a></li><li class=" menu-item menu-item-861269 menu-item-object-page menu-item-type-post_type " id="menu-item-861269"><a href="https://wdevradio.com/program-guide/" target="_blank">Program Guide</a></li><li class=" menu-item menu-item-861321 menu-item-object-page menu-item-type-post_type " id="menu-item-861321"><a href="https://wdevradio.com/the-trading-post/" target="_blank">The Trading Post</a></li><li class=" menu-item menu-item-860956 menu-item-object-custom menu-item-type-custom " id="menu-item-860956"><a href="https://blubrry.com/travelswithcharlie/" target="_blank">Travels with Charlie</a></li><li class=" menu-item menu-item-860957 menu-item-object-custom menu-item-type-custom " id="menu-item-860957"><a href="https://blubrry.com/vermontviewpoint/" target="_blank">Vermont Viewpoint</a></li><li class=" menu-item menu-item-861329 menu-item-object-page menu-item-type-post_type " id="menu-item-861329"><a href="https://wdevradio.com/wdev-90th-celebration/" target="_blank">WDEV 90th Celebration</a></li></ul>
</li><li class=" menu-item menu-item-864304 menu-item-object-page menu-item-type-post_type " id="menu-item-864304"><a href="https://wdevradio.com/podcasts/">Podcasts</a></li><li class=" menu-item menu-item-has-children menu-item-857781 menu-item-object-custom menu-item-type-custom " id="menu-item-857781"><a href="#">FCC Info</a><ul class="sub-menu"><li class=" menu-item menu-item-857782 menu-item-object-custom menu-item-type-custom " id="menu-item-857782"><a href="https://publicfiles.fcc.gov/fm-profile/WDEV-FM" target="_blank">96.1 FM</a></li><li class=" menu-item menu-item-857783 menu-item-object-custom menu-item-type-custom " id="menu-item-857783"><a href="https://publicfiles.fcc.gov/am-profile/WDEV" target="_blank">550 AM</a></li></ul>
</li><li class=" menu-item menu-item-857784 menu-item-object-custom menu-item-type-custom " id="menu-item-857784"><a href="https://publicfiles.fcc.gov/am-profile/WDEV/equal-employment-opportunity-records/additional-documents" target="_blank">EEO</a></li><li class=" menu-item menu-item-has-children menu-item-861227 menu-item-object-custom menu-item-type-custom " id="menu-item-861227"><a href="#">Sports</a><ul class="sub-menu"><li class=" menu-item menu-item-861221 menu-item-object-page menu-item-type-post_type " id="menu-item-861221"><a href="https://wdevradio.com/boston-red-sox/">Boston Red Sox</a></li><li class=" menu-item menu-item-861222 menu-item-object-page menu-item-type-post_type " id="menu-item-861222"><a href="https://wdevradio.com/high-school-basketball/">High School Basketball</a></li><li class=" menu-item menu-item-861223 menu-item-object-page menu-item-type-post_type " id="menu-item-861223"><a href="https://wdevradio.com/motor-racing-on-wdev/">Motor Racing on WDEV</a></li><li class=" menu-item menu-item-861224 menu-item-object-page menu-item-type-post_type " id="menu-item-861224"><a href="https://wdevradio.com/norwich-hockey/">Norwich Hockey</a></li><li class=" menu-item menu-item-861225 menu-item-object-page menu-item-type-post_type " id="menu-item-861225"><a href="https://wdevradio.com/patriots-football/">Football</a></li></ul>
</li><li class=" menu-item menu-item-861608 menu-item-object-page menu-item-type-post_type " id="menu-item-861608"><a href="https://wdevradio.com/meet-the-team/">Meet The Team</a></li><li class=" menu-item menu-item-939833 menu-item-object-page menu-item-type-post_type " id="menu-item-939833"><a href="https://wdevradio.com/advertising/">Advertising</a></li><li class=" menu-item menu-item-962989 menu-item-object-page menu-item-type-post_type " id="menu-item-962989"><a href="https://wdevradio.com/fcc-compliance/">FCC Compliance</a></li><li class=" menu-item menu-item-has-children menu-item-857785 menu-item-object-page menu-item-type-post_type " id="menu-item-857785"><a href="https://wdevradio.com/contact/">Contact</a><ul class="sub-menu"><li class=" menu-item menu-item-869846 menu-item-object-page menu-item-type-post_type " id="menu-item-869846"><a href="https://wdevradio.com/available-job-openings/">Available Job Openings</a></li><li class=" menu-item menu-item-873649 menu-item-object-page menu-item-type-post_type " id="menu-item-873649"><a href="https://wdevradio.com/where-to-listen/">Where to Listen</a></li></ul>
</li></ul>
</div> </div>
<button type="button" class="tsC_open tsH_navTrig trigger" data-target="tsM" title="Open Menu"></button>
</div>
<div class="tsSC transition tsflex " >
<ul class="social-media-links"><li class="facebook"><a href="http://www.facebook.com/WDEVradiovt/" title="Facebook" target="_blank" ></a></li><li class="twitter"><a href="http://www.twitter.com/WDEVRadio" title="Twitter" target="_blank" ></a></li><li class="custom-social-1"><a href="https://www.instagram.com/wdevradio" title="Instagram" target="_blank" ></a></li></ul>
<aside class="tsCntct"><ul class="tsCntct_list transition"><li><button type="button" class="multi-contact-link tsC_open tsC_Btn transition trigger" data-target="contactsList" data-icon="M" title="Contact Us">Contact Us</button></li></ul></aside>
<div id="contactsList" class="tsCntct_mdl_wrp mdl_wrp">
<div class="tsCntct_mdl mdl">
<button type="button" class="tsC_close trigger transition icon-close" data-target="contactsList" title="Close"></button>
<h4 class="tsCntct_title mdl_title">Contact Info</h4>
<div class="tsCntct_mdl_list mdl_list">
<ul class="tsCntct_multi modal_list" id="mobile-location-0"><li class="tsAddress tsi-address "><a href="https://maps.google.com/maps?daddr=, Waterbury, VT 05676" data-icon="M" title="https://maps.google.com/maps?daddr=, Waterbury, VT 05676" target="_blank" class=" tsHidden"><span>WDEV </b></span></a></li><li class="tsPhone "><a href="tel:(802) 244-1777" data-icon="A" title="(802) 244-1777" class=" tsHidden"><span>Phone: </b>(802) 244-1777</span></a></li><li class="tsPhone "><a href="tel:(802) 244-7321" data-icon="A" title="(802) 244-7321" class=" tsHidden"><span>Office: </b>(802) 244-7321</span></a></li><li class="tsPhone "><a href="tel:(802) 244-1777" data-icon="A" title="(802) 244-1777" class=" tsHidden"><span>Local Studio: </b>(802) 244-1777</span></a></li><li class="tsPhone "><a href="tel:(877) 291-8255" data-icon="A" title="(877) 291-8255" class=" tsHidden"><span>Toll Free Studio: </b>(877) 291-8255</span></a></li></ul>
</div>
</div>
</div>
</div>
</header>
<main class="tsC ">
<div class='full_width_content section_content content_bg wrp_color_bg'><div class='section w1060'><!-- Start block charlotte_photo_tiles_2 -->
<!-- charlotte_photo_tiles_2 new RENDER -->
<section id='section_1'
class='tsB tsT_photo_tiles pt2 promo_colors small xsmall square_1_1 not_well tsD_photofeature10 tCol_4 ' data-aos='fade-up' data-aos-once='true'>
<div class='tsR'>
<article class='tsI item_1 center yHero yImg yHds nDsc yLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp'><a class='tsI_cptn trig' href='/joseph-woodin-vital-signs/' target='_self' ><div class='tsI_txt transition'>
<header class='tsI_hds '>
<H1 class='tsI_hd'>Joseph Woodin - Vital Signs</H1>
<h5 class='tsI_sh'>Click Here to Learn More About Joseph Woodin - Vital Signs</h5>
</header></div></a><figure class='tsI_img theframe imgtag transition ' data-image='/files/2024/12/cropUIEQVKHH-Presenter-WoodinJ2.jpg?1:1&a=t' data-alt='Joseph Woodin - Vital Signs'></figure></div></article>
<article class='tsI item_2 center yHero yImg yHds nDsc yLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp'><a class='tsI_cptn trig' href='/david-zuckerman/' target='_self' ><div class='tsI_txt transition'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Former LG David Zuckerman</h5>
<h5 class='tsI_sh'>Vermont Viewpoint</h5>
</header></div></a><figure class='tsI_img theframe imgtag transition ' data-image='/files/2025/01/image3.jpg?1:1&a=t' data-alt='Former LG David Zuckerman'></figure></div></article>
<article class='tsI item_3 center yHero yImg yHds nDsc yLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp'><a class='tsI_cptn trig' href='/antarctica/' target='_self' ><div class='tsI_txt transition'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Antarctica</h5>
</header></div></a><figure class='tsI_img theframe imgtag transition ' data-image='/files/2024/09/Outlook-pem3ipiv2.jpg?1:1&a=t' data-alt='Antarctica'></figure></div></article>
<article class='tsI item_4 center yHero yImg yHds nDsc yLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp'><a class='tsI_cptn trig' href='/mt-washington-weather-observatory/' target='_self' ><div class='tsI_txt transition'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Mt Washington Weather Observatory<br><img class="log" src="/files/2025/03/Washington-Weather-Observatory-Logo1.png"></h5>
</header></div></a><figure class='tsI_img theframe imgtag transition ' data-image='/files/2025/03/untitled1.jpeg?1:1&a=t' data-alt='Mt Washington Weather Observatory'></figure></div></article></div></section>
<!-- end of charlotte_photo_tiles_2 new RENDER --><!-- End block --><!-- Start block charlotte_banner_1 -->
<!-- charlotte_banner_1 new RENDER -->
<section id='section_2'
class='tsB tsT_banner b1 promo_colors widescreen_2-4_1 large tsD_red-banner tsD_nat not_well nCol'>
<div class='tsR'>
<article id='b1-1' class='tsI item_1 animate txt_left nHero yHds nImg yOvr'
data-aos='fade-up' data-aos-once='true'>
<div class='tsX tsXa' style=''>
</div>
<div class='tsX tsXb' style=''></div><div class='tsI_wrp' ><div class='tsI_cptn'>
<div class='tsI_txt'>
<header class='tsI_hds '>
<h2 class='tsI_hd'><img src="/files/2025/04/the-nation_logo_wordmark_large-scale_rgb_white_1.png" style="max-width:500px; width:100%; "></h2>
</header><div class='tsI_btn_wrp'></div></div></div></div></article></div></section>
<!-- end of charlotte_banner_1 new RENDER --><!-- End block --><!-- Start block charlotte_article_1 -->
<!-- charlotte_article_1 new RENDER -->
<section id='section_3'
class='tsB tsT_article a1 tsflex col_4 square_1_1 small xsmall not_well tsD_episodes'>
<div class='tsR'>
<h2 class='tsB_hd section_title ts_hidden' data-title='Episodes'><span>Episodes</span></h2>
<article class='tsI item_1 center nHero yImg yHds nDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='/the-nation/' target='_self' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2025/03/time-of-monsters.jpg?1:1&a=t' data-alt='Time of Monsters'></figure><div class='tsI_txt'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Time of Monsters</h5>
<h5 class='tsI_sh'>Mondays 3:00-4:00pm</h5>
</header></div></a></article>
<article class='tsI item_2 center nHero yImg yHds nDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='/the-nation/' target='_self' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2025/03/american-prestige.jpg?1:1&a=t' data-alt='American Prestige'></figure><div class='tsI_txt'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>American Prestige</h5>
<h5 class='tsI_sh'>Tuesdays 3:00-4:00pm</h5>
</header></div></a></article>
<article class='tsI item_3 center nHero yImg yHds nDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='/the-nation/' target='_self' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2025/03/making-sense.jpg?1:1&a=t' data-alt='Start Making Sense'></figure><div class='tsI_txt'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Start Making Sense</h5>
<h5 class='tsI_sh'>Wednesdays 3:00-4:00pm</h5>
</header></div></a></article>
<article class='tsI item_4 center nHero yImg yHds nDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='/the-nation/' target='_self' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2025/03/tech.jpg?1:1&a=t' data-alt='Tech Wont Save Us'></figure><div class='tsI_txt'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>Tech Wont Save Us</h5>
<h5 class='tsI_sh'>Thursdays 3:00-4:00pm</h5>
</header></div></a></article>
<article class='tsI item_5 center nHero yImg yHds nDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='/the-nation/' target='_self' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2025/03/american-prestige.jpg?1:1&a=t' data-alt='American Prestige'></figure><div class='tsI_txt'>
<header class='tsI_hds '>
<h5 class='tsI_hd'>American Prestige</h5>
<h5 class='tsI_sh'>Fridays 3:00-4:00pm<br>(Week in Review)</h5>
</header></div></a></article></div></section>
<!-- end of charlotte_article_1 new RENDER --><!-- End block --><!-- Start block charlotte_article_1 -->
<!-- charlotte_article_1 new RENDER -->
<section id='section_4'
class='tsB tsT_article a1 tsflex col_2 square_1_1 medium not_well tsD_content tsD_slideR tsD_list'>
<div class='tsR'>
<article class='tsI item_1 left nHero nImg yHds yDsc yHd yShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='https://player.listenlive.co/67961' target='_blank' ><div class='tsI_txt'>
<header class='tsI_hds '>
<h3 class='tsI_hd'>Listen in With the Locals</h3>
<h3 class='tsI_sh'>Tune in to our radio show and hear what's happening</h3>
</header>
<div class='tsI_dsc_wrp '><div class='tsI_dsc'><p>Looking for a new show to listen to on your way to work? Trying to find a radio station with updates on all of the latest happenings in sports? In either case, WDEV is the station to choose. Our local radio station offers everything from music and weather to sports and local news. <br><br>Our AM station has been on the air for 92 years, and our FM station has been on the air for 32 years. That means we've been a reliable source of news and entertainment for decades. Put our Waterbury, VT station on today to hear about everything that's happening in our beautiful state.</p></div></div></div><div class='tsI_btn btn_1 btn_md transition'> Live Stream</div></a></article>
<article class='tsI item_2 center nHero nImg nHds yDsc nHd nShd yLk' data-aos='fade-up' data-aos-once='true' ><a class='tsI_wrp' href='https://digdeepvt.com/' target='_blank' ><div class='tsI_txt'>
<header class='tsI_hds font_sm'>
</header>
<div class='tsI_dsc_wrp font_sm'><div class='tsI_dsc'><p><img src="https://wdevradio.com/files/2024/01/Dig_Deep_VT_web_banner_1.jpg" alt= "banner ad for Dig Deep for Local Vermont Farms, encouraging you to donate to Vermont Farms that were impacted by the flooding in 2023. Donate at digdeepvt.com"></p></div></div></div></a></article></div></section>
<!-- end of charlotte_article_1 new RENDER --><!-- End block --><!-- Start block charlotte_article_1 -->
<!-- charlotte_article_1 new RENDER -->
<section id='section_5'
class='tsB tsT_article a1 tsflex col_2 landscape_4_3 medium not_well tsD_content tsD_slideL'>
<div class='tsR'>
<article class='tsI item_1 left nHero nImg yHds yDsc yHd nShd nLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp' ><div class='tsI_txt'>
<header class='tsI_hds font_xl'>
<h3 class='tsI_hd'>See what we're running on our station</h3>
</header>
<div class='tsI_dsc_wrp '><div class='tsI_dsc'><p>You'll be able to listen to a wide variety of programming on our local radio station. Listen in to catch:<ul><li>5.5 hours of live local news every weekday</li><li>4 hours of live local commentary every weekday</li><li>MWOBS weather updates at 15 minutes and 45 minutes after the hour every drive time. Roger Hill weather updates at 4:15PM and 5:15PM every weekday </li><li>Traffic updates at 10 minutes before and 10 minutes after the hour every drive time</li><li>Always your favorites on Saturday: Music To Go To The Dump By, Trading Post, For The Birds and In The Garden. Home of the Red Sox, Norwich Hockey, MSN Auto Racing and Vermont Basketball </li><li>Coming soon: The Getaway and The American Music Hall on Podcast</li></ul>Your ride to work will never be the same. Check out our radio station for yourself today.</p></div></div></div></div></article>
<article class='tsI item_2 center nHero yImg nHds nDsc nHd nShd nLk' data-aos='fade-up' data-aos-once='true' ><div class='tsI_wrp' ><figure class='tsI_img theframe imgtag imgbase ' data-image='/files/2023/05/bigstock-View-From-The-Summit-Of-Mount--464387437.jpg?1:.75&a=t' data-alt=''></figure><div class='tsI_txt'>
<header class='tsI_hds '>
</header></div></div></article></div></section>
<!-- end of charlotte_article_1 new RENDER --><!-- End block --></div></div><!-- CUSTOM JAVASCRIPT FOR THIS PAGE -->
<style>
.tsD_episodes .tsR {
max-width: 100% !important;
padding: 0 !important;
margin: 0 auto !important;
}
.tsD_episodes {
padding-top: 0 !important;
margin-top: 0 !important;
}
.tsD_episodes .tsI {
margin: 0 !important;
padding: 0 !important;
}
@media (min-width: 851px) {
.tsD_episodes .tsI {
width: 20% !important;
}
}
@media (max-width: 850px) {
.tsD_episodes .tsI {
width: 50% !important;
}
}
@media (max-width: 569px) {
.tsD_episodes .tsI {
width: 100% !important;
}
}
</style></main>
<footer class="tsF" rel="footer">
<section class="tsF_section section_content tsflex">
<div class="section w1060">
<div class="tsB tsT_plugin tsT_article tsT_footer tsflex col_3 small not_well">
<div class="tsR">
</div>
</div>
</div>
</section>
<section class="tsF_section brand tsflex">
<div class="tsR">
<div id='_the_logo' class='_is_plugin footer-logo' slug='_the_logo' data-extra-args='{"section":"footer"}'>
<h2 class='logo logo-v2'>
<div data-numslots="1" class="logo-variation logo-variation-footer"><div class="logo-slot pct100 slot_0 slot-type-image align-center"><a class="ve_no_url" href="https://wdevradio.com" title="WDEV" rel="home"><img src="" /></a></div></div>
</h2></div> </div>
</section>
<hr>
<section class="tsF_section copyright tsflex">
<div class="tsR">
<address class="tsF_copyright">
Copyright © 2025 WDEV, all rights reserved.
<br><span class='footer-city-state-zip-address footer-address'><span>Waterbury</span>, <span>VT</span> <span>05676</span> </span>
</address>
</div>
</section>
<section class="tsF_section bottom social tsflex">
<div class="tsR">
<div class="tsF_col">
<ul class="social-media-links"><li class="facebook"><a href="http://www.facebook.com/WDEVradiovt/" title="Facebook" target="_blank" ></a></li><li class="twitter"><a href="http://www.twitter.com/WDEVRadio" title="Twitter" target="_blank" ></a></li><li class="custom-social-1"><a href="https://www.instagram.com/wdevradio" title="Instagram" target="_blank" ></a></li></ul> </div>
<div class="tsF_col">
<button type="button" class="tsC_open tsC_Btn tsF_navTrig trigger transition" data-target="tsM" title="Open Menu"> Menu</button>
</div>
</div>
</section>
</footer>
</div>
<a class="tsC_Btn to-top scrollBtn" href="#top"></a>
<nav id="tsM" class="tsM transition triggered">
<div class="tsM_wrp">
<button type="button" class="tsC_close trigger transition icon-close" data-target="tsM" title="Close Menu"></button>
<div class="tsM_bdy">
<section class="tsM_sec social">
<ul class="social-media-links"><li class="facebook"><a href="http://www.facebook.com/WDEVradiovt/" title="Facebook" target="_blank" ></a></li><li class="twitter"><a href="http://www.twitter.com/WDEVRadio" title="Twitter" target="_blank" ></a></li><li class="custom-social-1"><a href="https://www.instagram.com/wdevradio" title="Instagram" target="_blank" ></a></li></ul> </section>
<!-- <h6 class="tsB_hd"><span>Menu</span></h6> -->
<section class="tsM_sec">
<div id="access" class="original_access">
<div class="menu align-right">
<ul id="menu-primary-menu" rel="dennis" class="sf-menu sf-menu_bg"><li class=" menu-item menu-item-973868 menu-item-object-page menu-item-type-post_type current-menu-item current_page_item page_item page-item-875845" id="menu-item-973868"><a href="https://wdevradio.com/">Home</a></li><li class=" menu-item menu-item-973799 menu-item-object-custom menu-item-type-custom " id="menu-item-973799"><a href="https://player.listenlive.co/67961" target="_blank">Listen Live</a></li><li class=" menu-item menu-item-866446 menu-item-object-page menu-item-type-post_type " id="menu-item-866446"><a href="https://wdevradio.com/news/">News</a></li><li class=" menu-item menu-item-has-children menu-item-871210 menu-item-object-custom menu-item-type-custom " id="menu-item-871210"><a href="https://weatheringheights1.wordpress.com/">Weather</a><ul class="sub-menu"><li class=" menu-item menu-item-857778 menu-item-object-custom menu-item-type-custom " id="menu-item-857778"><a href="https://blubrry.com/rogerhillsweatherclassroom/" target="_blank">Roger Hill Weather Classroom</a></li><li class=" menu-item menu-item-857779 menu-item-object-page menu-item-type-post_type " id="menu-item-857779"><a href="https://wdevradio.com/school-closings/">School Closings</a></li></ul>
</li><li class=" menu-item menu-item-has-children menu-item-903589 menu-item-object-page menu-item-type-post_type " id="menu-item-903589"><a href="https://wdevradio.com/events/">Events</a><ul class="sub-menu"><li class=" menu-item menu-item-967651 menu-item-object-page menu-item-type-post_type " id="menu-item-967651"><a href="https://wdevradio.com/antarctica/">Antarctica</a></li></ul>
</li><li class=" menu-item menu-item-has-children menu-item-860935 menu-item-object-custom menu-item-type-custom " id="menu-item-860935"><a href="#">Programs</a><ul class="sub-menu"><li class=" menu-item menu-item-861228 menu-item-object-page menu-item-type-post_type " id="menu-item-861228"><a href="https://wdevradio.com/birthdays/" target="_blank">Birthdays</a></li><li class=" menu-item menu-item-860947 menu-item-object-custom menu-item-type-custom " id="menu-item-860947"><a href="https://podcasters.spotify.com/pod/show/brady-farkas3" target="_blank">The Brady Farkas Show</a></li><li class=" menu-item menu-item-861247 menu-item-object-page menu-item-type-post_type " id="menu-item-861247"><a href="https://wdevradio.com/contests/" target="_blank">Contests</a></li><li class=" menu-item menu-item-860949 menu-item-object-custom menu-item-type-custom " id="menu-item-860949"><a href="https://audioboom.com/channel/johnbatchelor" target="_blank">Eye on the World with John Batchelor</a></li><li class=" menu-item menu-item-860950 menu-item-object-custom menu-item-type-custom " id="menu-item-860950"><a href="https://blubrry.com/forthebirds/" target="_blank">For The Birds</a></li><li class=" menu-item menu-item-861253 menu-item-object-page menu-item-type-post_type " id="menu-item-861253"><a href="https://wdevradio.com/the-getaway-with-greg-hooker/" target="_blank">The Getaway With Greg Hooker</a></li><li class=" menu-item menu-item-860952 menu-item-object-custom menu-item-type-custom " id="menu-item-860952"><a href="https://blubrry.com/gardenwdev/" target="_blank">In the Garden</a></li><li class=" menu-item menu-item-860953 menu-item-object-custom menu-item-type-custom " id="menu-item-860953"><a href="https://blubrry.com/musictogotothedumpby/" target="_blank">Music to Go to the Dump By</a></li><li class=" menu-item menu-item-861256 menu-item-object-page menu-item-type-post_type " id="menu-item-861256"><a href="https://wdevradio.com/party-calendar/" target="_blank">Party Calendar</a></li><li class=" menu-item menu-item-861269 menu-item-object-page menu-item-type-post_type " id="menu-item-861269"><a href="https://wdevradio.com/program-guide/" target="_blank">Program Guide</a></li><li class=" menu-item menu-item-861321 menu-item-object-page menu-item-type-post_type " id="menu-item-861321"><a href="https://wdevradio.com/the-trading-post/" target="_blank">The Trading Post</a></li><li class=" menu-item menu-item-860956 menu-item-object-custom menu-item-type-custom " id="menu-item-860956"><a href="https://blubrry.com/travelswithcharlie/" target="_blank">Travels with Charlie</a></li><li class=" menu-item menu-item-860957 menu-item-object-custom menu-item-type-custom " id="menu-item-860957"><a href="https://blubrry.com/vermontviewpoint/" target="_blank">Vermont Viewpoint</a></li><li class=" menu-item menu-item-861329 menu-item-object-page menu-item-type-post_type " id="menu-item-861329"><a href="https://wdevradio.com/wdev-90th-celebration/" target="_blank">WDEV 90th Celebration</a></li></ul>
</li><li class=" menu-item menu-item-864304 menu-item-object-page menu-item-type-post_type " id="menu-item-864304"><a href="https://wdevradio.com/podcasts/">Podcasts</a></li><li class=" menu-item menu-item-has-children menu-item-857781 menu-item-object-custom menu-item-type-custom " id="menu-item-857781"><a href="#">FCC Info</a><ul class="sub-menu"><li class=" menu-item menu-item-857782 menu-item-object-custom menu-item-type-custom " id="menu-item-857782"><a href="https://publicfiles.fcc.gov/fm-profile/WDEV-FM" target="_blank">96.1 FM</a></li><li class=" menu-item menu-item-857783 menu-item-object-custom menu-item-type-custom " id="menu-item-857783"><a href="https://publicfiles.fcc.gov/am-profile/WDEV" target="_blank">550 AM</a></li></ul>
</li><li class=" menu-item menu-item-857784 menu-item-object-custom menu-item-type-custom " id="menu-item-857784"><a href="https://publicfiles.fcc.gov/am-profile/WDEV/equal-employment-opportunity-records/additional-documents" target="_blank">EEO</a></li><li class=" menu-item menu-item-has-children menu-item-861227 menu-item-object-custom menu-item-type-custom " id="menu-item-861227"><a href="#">Sports</a><ul class="sub-menu"><li class=" menu-item menu-item-861221 menu-item-object-page menu-item-type-post_type " id="menu-item-861221"><a href="https://wdevradio.com/boston-red-sox/">Boston Red Sox</a></li><li class=" menu-item menu-item-861222 menu-item-object-page menu-item-type-post_type " id="menu-item-861222"><a href="https://wdevradio.com/high-school-basketball/">High School Basketball</a></li><li class=" menu-item menu-item-861223 menu-item-object-page menu-item-type-post_type " id="menu-item-861223"><a href="https://wdevradio.com/motor-racing-on-wdev/">Motor Racing on WDEV</a></li><li class=" menu-item menu-item-861224 menu-item-object-page menu-item-type-post_type " id="menu-item-861224"><a href="https://wdevradio.com/norwich-hockey/">Norwich Hockey</a></li><li class=" menu-item menu-item-861225 menu-item-object-page menu-item-type-post_type " id="menu-item-861225"><a href="https://wdevradio.com/patriots-football/">Football</a></li></ul>
</li><li class=" menu-item menu-item-861608 menu-item-object-page menu-item-type-post_type " id="menu-item-861608"><a href="https://wdevradio.com/meet-the-team/">Meet The Team</a></li><li class=" menu-item menu-item-939833 menu-item-object-page menu-item-type-post_type " id="menu-item-939833"><a href="https://wdevradio.com/advertising/">Advertising</a></li><li class=" menu-item menu-item-962989 menu-item-object-page menu-item-type-post_type " id="menu-item-962989"><a href="https://wdevradio.com/fcc-compliance/">FCC Compliance</a></li><li class=" menu-item menu-item-has-children menu-item-857785 menu-item-object-page menu-item-type-post_type " id="menu-item-857785"><a href="https://wdevradio.com/contact/">Contact</a><ul class="sub-menu"><li class=" menu-item menu-item-869846 menu-item-object-page menu-item-type-post_type " id="menu-item-869846"><a href="https://wdevradio.com/available-job-openings/">Available Job Openings</a></li><li class=" menu-item menu-item-873649 menu-item-object-page menu-item-type-post_type " id="menu-item-873649"><a href="https://wdevradio.com/where-to-listen/">Where to Listen</a></li></ul>
</li></ul>
</div> </div>
</section>
</div>
</div>
</nav>
<div id="_the_embeded_below_mods" slug="">
<div id="_the_embeded_below_mods_wrapper"></div>
<div id="_the_embeded_below_mods_btn" class="_is_embeded"></div>
</div>
<script type="text/javascript" src="https://wdevradio.com/cms_websites/js/dist/shared/underscore.min.js?ver=1.8.3"></script>
<script type="text/javascript" src="https://wdevradio.com/cms_websites/js/dist/beacon-theme_charlotte/theme-min.js"></script>
<script type="text/javascript" src="https://wdevradio.com/cms_websites/js/dist/beacon-theme_charlotte/fontawesome/all.min.js"></script>
<script type="text/javascript" src="https://wdevradio.com/cms_websites/tools/GAEventTracking/js/scripts.min.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script>jQuery(document).ready(function(){jQuery("body").append('<div id="icon-floating-btn"><a href="https://player.listenlive.co/67961/en/show/32" target="_blank"><span class="cta_btn"><i class="fa-solid fa-tower-broadcast"></i> Listen Live</span></a></div>');});</script>
</body></html>