<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="../images/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="http://www.wlct.com/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="http://www.wlct.com/css/index-style.css">
<link rel=alternate type="application/rss+xml" title=ROR href="http://www.wlct.com/sitemap.txt">
<link rel=alternate type="application/rss+xml" title=SITEMAP href="http://www.wlct.com/sitemap.xml">
<link rel=alternate type="application/rss+xml" title=SITEMAP href="http://www.wlct.com/sitemap.htm">
<link rel=alternate type="application/rss+xml" title=SITEMAP href="http://www.wlct.com/urllist.txt">
<link rel=alternate type="application/rss+xml" title=SITEMAP href="http://www.wlct.com/rss.xml">
<link rel=alternate type="application/rss+xml" title=SITEMAP href="http://www.wlct.com/sitemap.xml.gz">
<link rel="canonical" href="http://www.wlct.com/">
<meta http-equiv="Cache-control" content="public">
<!--
WLCT Template
http://www.wlct.com/
-->
<title>WLCT COUNTRY 102.1 FM & WEEN SOLID GOSPEL 1460 AM</title>
<meta name="description" content="WLCT COUNTRY 102.1 FM and WEEN SOLID GOSPEL in Lafayette Tennessee playing country music and gospel music with Live Streaming High school sports">
<meta content="WEEN, AM, WLCT, FM, radio, Lafayette TN, Tennessee, solid gospel, country 102.1, 1460,Live Streaming Audio,country music,Gospel Music" name="keywords" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "RadioStation",
"name": "Laureigh",
"image": "",
"@id": "",
"url": "http://www.wlct.com",
"telephone": "615666-2169",
"address": {
"@type": "PostalAddress",
"streetAddress": "231 Chaffin Road",
"addressLocality": "Lafayette",
"addressRegion": "TN",
"postalCode": "37083",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 36.5346534,
"longitude": -86.0068103
},
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
],
"opens": "08:00",
"closes": "12:00"
},
"sameAs": ""
}
</script>
<base target="_blank">
<code><meta name="google-site-verification"
content="SqWSW6deIceZo2f9iVyplYCi8Q8RYSzezST9UOT9j84" /></code />
<meta name="msvalidate.01" content="5D82D756E9BA9001FFC98ECDD23D4185" />
<meta http-equiv="imagetoolbar" content="no"/>
<style>
h1 {
color: blue;
font-size: 50px;
font-weight:800;
}
h2 {
color: blue;
text-shadow: 2px 2px red;
font-size: 40px;
font-weight:800;
}
h3 {
color: blue;
font-size: 40px;
font-weight:800;
}
h4 {
color: blue;
text-shadow: 2px 2px red;
font-size: 40px;
font-weight:800;
}
h5 {
color: blue;
font-size: 20px;
font-weight:600;
}
h6 {
color: blue;
text-shadow: 2px 2px red;
font-size: 30px;
font-weight:800;
}
</style>
<script type="text/javascript">
function cdtime(container, targetdate){
if (!document.getElementById || !document.getElementById(container)) return
this.container=document.getElementById(container)
this.currentTime=new Date()
this.targetdate=new Date(targetdate)
this.timesup=false
this.updateTime()
}
cdtime.prototype.updateTime=function(){
var thisobj=this
this.currentTime.setSeconds(this.currentTime.getSeconds()+1)
setTimeout(function(){thisobj.updateTime()}, 1000) //update time every second
}
cdtime.prototype.displaycountdown=function(baseunit, functionref){
this.baseunit=baseunit
this.formatresults=functionref
this.showresults()
}
cdtime.prototype.showresults=function(){
var thisobj=this
var timediff=(this.targetdate-this.currentTime)/1000 //difference btw target date and current date, in seconds
if (timediff<0){ //if time is up
this.timesup=true
this.container.innerHTML=this.formatresults()
return
}
var oneMinute=60 //minute unit in seconds
var oneHour=60*60 //hour unit in seconds
var oneDay=60*60*24 //day unit in seconds
var dayfield=Math.floor(timediff/oneDay)
var hourfield=Math.floor((timediff-dayfield*oneDay)/oneHour)
var minutefield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour)/oneMinute)
var secondfield=Math.floor((timediff-dayfield*oneDay-hourfield*oneHour-minutefield*oneMinute))
if (this.baseunit=="hours"){ //if base unit is hours, set "hourfield" to be topmost level
hourfield=dayfield*24+hourfield
dayfield="n/a"
}
else if (this.baseunit=="minutes"){ //if base unit is minutes, set "minutefield" to be topmost level
minutefield=dayfield*24*60+hourfield*60+minutefield
dayfield=hourfield="n/a"
}
else if (this.baseunit=="seconds"){ //if base unit is seconds, set "secondfield" to be topmost level
var secondfield=timediff
dayfield=hourfield=minutefield="n/a"
}
this.container.innerHTML=this.formatresults(dayfield, hourfield, minutefield, secondfield)
setTimeout(function(){thisobj.showresults()}, 1000) //update results every second
}
/////CUSTOM FORMAT OUTPUT FUNCTIONS BELOW//////////////////////////////
//Create your own custom format function to pass into cdtime.displaycountdown()
//Use arguments[0] to access "Days" left
//Use arguments[1] to access "Hours" left
//Use arguments[2] to access "Minutes" left
//Use arguments[3] to access "Seconds" left
//The values of these arguments may change depending on the "baseunit" parameter of cdtime.displaycountdown()
//For example, if "baseunit" is set to "hours", arguments[0] becomes meaningless and contains "n/a"
//For example, if "baseunit" is set to "minutes", arguments[0] and arguments[1] become meaningless etc
function formatresults(){
if (this.timesup==false){//if target date/time not yet met
var displaystring=arguments[0]+" days "+arguments[1]+" hours "+arguments[2]+" minutes "+arguments[3]+" seconds left until 2026 New Years Day <HR>"
}
else{ //else if target date/time met
var displaystring="<BR><b><font color=#FF0000><font-size=18pt>Happy New Year 2026 !!!<HR HR COLOR= 0000FF SIZE=.25>"
}
return displaystring
}
function formatresults2(){
if (this.timesup==false){ //if target date/time not yet met
var displaystring="<span class='lcdstyle'>"+arguments[0]+" <sup>days</sup> "+arguments[1]+" <sup>hours</sup> "+arguments[2]+" <sup>minutes</sup> "+arguments[3]+" <sup>seconds</sup></span> left until Christmas 2025<HR>"
}
else{ //else if target date/time met
var displaystring="" //Don't display any text
alert("WLCT and WEEN Wish You a Very Merry Christmas!!!") //Instead, perform a custom alert
}
return displaystring
}
</script>
<style type="text/css">
.main {
width:85%;
border:0px solid #ff0000;
}
.month {
background-color:#0000ff;
font:bold 12px verdana;
color:white;
}
.daysofweek {
background-color:#ff0000;
font:bold 12px verdana;
color:white;
}
.days {
font-size: 12px;
font-family:verdana;
color:black;
background-color: #e4f8f8;
padding: 2px;
}
.days #today{
font-weight: bold;
color: red;
}
</style>
<script type="text/javascript" src="http://www.wlct.com/js/basiccalendar.js">
</script>
<LINK href="/favicon.ico"
rel="shortcut icon"/>
<link href="http://wlct.com/images/favicon.ico" rel="shortcut icon"/>
</head>
<body>
<div class="fixed-header">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">WLCT</a>
</div>
<nav class="main-menu">
<ul>
<li><a href="#home">Home</a></li>
<li><a class="external" href="http://www.wlct.com/Swap-N-Shop.html" target="_blank">Swap〰N〰Shop</a></li>
<li><a class="external" href="http://www.wlct.com/Calendar of Events.html" target="_blank">Calendar of Events</a></li>
<li><a class="external" href="http://www.wlct.com/Advertising.html" target="_blank">Advertising</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div>
<p></p>
<!-- start home -->
<section>
<div id="home">
<div class="container">
<div class="row text-center inner">
<div class="col-lg-12 content-item-1 background">
<div class="blog-content">
<a href="http://173.240.140.240:8000/broadwave.mp3?src=1&rate=0"" target="_blank"><button type="button" class="btn gray-btn normal-btn">Listen Live TO WLCT</button></a>
<a href="http://173.240.140.240:8000/broadwave.mp3?src=2&rate=0"" target="_blank"><button type="button" class="btn gray-btn normal-btn">Listen Live TO WEEN</button></a><br>
Streaming live High School Sports and Sunday mornings preachers!!!
<p><!--webbot bot="HTMLMarkup" startspan --><form method="get" action="http://www.google.com/search">
<input type="text" name="q" size="25" maxlength="200" value="" /><br><br>
<input type="submit" value="Google Search" /><!--webbot bot="HTMLMarkup" endspan --></form></p>
<h1> WLCT COUNTRY 102.1 on the FM dial & WEEN SOLID GOSPEL 1460 on the AM dial
playing what you want to hear</h1>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div id="calendar">
<div class="container">
<div class="row text-center inner">
<div class="col-sm-6 content-item content-item-1 background">
<div class="blog-content">
<h2>Calendar</h2>
<form>
<p class="text-center">
<select onChange="updatecalendar(this.options)">
<script>
var themonths=['January','February','March','April','May','June',
'July','August','September','October','November','December']
var todaydate=new Date()
var curmonth=todaydate.getMonth()+1 //get current month (1-12)
var curyear=todaydate.getFullYear() //get current year
function updatecalendar(theselection){
var themonth=parseInt(theselection[theselection.selectedIndex].value)+1
var calendarstr=buildCal(themonth, curyear, "main", "month", "daysofweek", "days", 0)
if (document.getElementById)
document.getElementById("calendarspace").innerHTML=calendarstr
}
document.write('<option value="'+(curmonth-1)+'" selected="yes">Current Month</option>')
for (i=0; i<12; i++) //display option for 12 months of the year
document.write('<option value="'+i+'">'+themonths[i]+' '+curyear+'</option>')
</script>
</select> <br>
<p>
<div id="calendarspace" class="text-center">
<script>
//write out current month's calendar to start
document.write(buildCal(curmonth, curyear, "main", "month", "daysofweek", "days", 0))
</script>
</div>
</form></div><hr>
<h3 class="auto-style8"> It's all about the time to go or the time gone by</h3>
<!--start count-up --><hr><script>
function setcountup(theyear,themonth,theday){
yr=theyear;mo=themonth;da=theday
}
//////////CONFIGURE THE countup SCRIPT HERE//////////////////
//STEP 1: Configure the date to count up from, in the format year, month, day:
//This date should be less than today
setcountup(2025,1,1)
//STEP 2: Configure text to be attached to count up
var displaymessage=" of 2025 are gone never to be seen again!!!"
//STEP 3: Configure the below 5 variables to set the width, height, background color, and text style of the countup area
var countupwidth='95%'
var countupheight='20px' //applicable only in NS4
var countupbgcolor='transparen'
var opentags='<FONT color=#000000 size="4">'
var closetags='</small></font>'
//////////DO NOT EDIT PASS THIS LINE//////////////////
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
var crosscount=''
function start_countup(){
if (document.layers)
document.countupnsmain.visibility="show"
else if (document.all||document.getElementById)
crosscount=document.getElementById&&!document.all?document.getElementById("countupie") : countupie
countup()
}
if (document.all||document.getElementById)
document.write('<span id="countupie" style="width:'+countupwidth+'; background-color:'+countupbgcolor+'"></span>')
window.onload=start_countup
function countup(){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todayh=today.getHours()
var todaymin=today.getMinutes()
var todaysec=today.getSeconds()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec
paststring=montharray[mo-1]+" "+da+", "+yr
dd=Date.parse(todaystring)-Date.parse(paststring)
dday=Math.floor(dd/(60*60*1000*24)*1)
dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1)
dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1)
dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1)
if (document.layers){
document.countupnsmain.document.countupnssub.document.write(opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds "+displaymessage+closetags)
document.countupnsmain.document.countupnssub.document.close()
}
else if (document.all||document.getElementById)
crosscount.innerHTML=opentags+dday+ " days, "+dhour+" hours, "+dmin+" minutes, and "+dsec+" seconds "+displaymessage+closetags
setTimeout("countup()",1000)
}
</script><span id="countupie" style="width:95%; background-color:transparen"></span>
<!--end count-up --><hr>
<!--start count-down -->
<!--webbot bot="HTMLMarkup" startspan --> <div id="countdowncontainer"><br/>Happy New Year 2025 !!!</div>
<br/>
<div id="countdowncontainer2"><span class="lcdstyle">106 <sup>days</sup> 8 <sup>hours</sup> 2 <sup>minutes</sup> 4 <sup>seconds</sup></span> <b>left until Christmas 2025</b></div>
<script type="text/javascript">
var futuredate=new cdtime("countdowncontainer", "January 1, 2026 00::01")
futuredate.displaycountdown("days", formatresults)
var currentyear=new Date().getFullYear()
//dynamically get this Christmas' year value. If Christmas already passed, then year=current year+1
var thischristmasyear=(new Date().getMonth()>=11 && new Date().getDate()>25)? currentyear+1 : currentyear
var christmas=new cdtime("countdowncontainer2", "December 25, "+thischristmasyear+" 0:0:00")
christmas.displaycountdown("days", formatresults2)
</script><!--webbot bot="HTMLMarkup" endspan -->
<!--end count-down -->
<h5> Macon County's Own WLCT COUNTRY 102.1 and WEEN SOLID GOSPEL 1460 or 97.5 FM</h5><hr>
</div>
<div class="col-sm-6 content-item content-item-1 background">
<div class="blog-content">
The Weather in Lafayette<br><a class="weatherwidget-io" href="https://forecast7.com/en/36d56n85d99/37083/?unit=us" data-label_1="LAFAYETTE" data-label_2="WEATHER" data-theme="original" >LAFAYETTE WEATHER</a><br>
<script>
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src='https://weatherwidget.io/js/widget.min.js';fjs.parentNode.insertBefore(js,fjs);}}(document,'script','weatherwidget-io-js');
</script>
<h4 class="auto-style2">"Macon County's Own"</h4> <hr>
<p>Playing what you want to hear on WLCT COUNTRY 102.1 on the FM dial & WEEN SOLID GOSPEL 1460 on the AM dial</p> <hr>
<h3 class="auto-style8">Serving this area with pride, integrity, commitment, and concern</h3><hr>
<h3 class="auto-style6">WLCT COUNTRY 102.1 FM & WEEN SOLID GOSPEL 1460 AM & 97.5 FM</h3><br> <hr>
<h3 class="auto-style8">Proven commitment for over 60 years</h3><hr>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end home -->
<!-- start Advisories -->
<section>
<div id="Advisories">
<div class="container">
<div class="row text-center inner">
<div class="col-sm-6 content-item-1 background">
<div class="blog-content">
<h3 class="auto-style3"> Watches, Warnings or Advisories</h3><br>
<p><a href="https://alerts.weather.gov/search?zone=TNC111" target="_blank">
Watches, Warnings or Advisories for
Macon County</a></p>
<p><a href="https://alerts.weather.gov/search?area=TN" target="_blank">
Watches, Warnings or Advisories for all Tennessee</a></p>
<p><a href="https://alerts.weather.gov/search?area=KY" target="_blank">
Watches, Warnings or Advisories for all Kentucky</a></p><br>
<p><a href="http://www.wlct.com/NOAA-WEATHER-RADIO.html" target="_blank">
Programming Your NOAA Weather Radio with your Encoding
allows you to specify the particular area.</a></p><br>
</div>
</div>
<div class="col-sm-6 content-item-1 background">
<div class="blog-content">
<img src="images/Header003.gif" alt="WLCT & WEEN Radio" class="tm-image">
<h3 class="auto-style3"> Lafayette Broadcasting Mission Statement</h3>
<p>Lafayette Broadcasting is dedicated to serving our
community to the best of our ability, and providing the
latest, and up to the minute news, weather, sports and
information of interest on WLCT COUNTRY 102.1 on the FM dial & WEEN SOLID GOSPEL 1460 on the AM dial</p><br><br>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- start Contact -->
<section>
<div id="contact">
<div class="container">
<div class="row text-center inner">
<h2 class="text-center dark-blue-text main-title"><b>Contact Us</b></h2>
<div class="col-sm-6 content-item-1 background">
<div class="blog-content">
<h6 class="auto-style13">You can Contact Us Here</h6>
<h5 class="text-center"><span class="auto-style12">We would love to hear from you!!<br>Please fill out all parts</span></h5><br>
<!--<div class="row"> -->
<form action="http://www.lafayetteministorage.net/wlct-contact.php" method="post" class="contact-form">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-group">
<input name="cf_name" type="text" class="form-control" id="name" placeholder="Your Name..." required>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-group contact-field">
<input name="cf_email" type="email" class="form-control" id="email" placeholder="Your Email..." required>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-group contact-field">
<input name="cf_phone" type="number" class="form-control" id="phone" placeholder="Your Phone..." required>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-group contact-field" style="text-align: center">
<textarea name="cf_message" rows="5" class="form-control" id="message" placeholder="Write your message..." required></textarea><div class="text-center">
<br>
<script type="text/javascript">function checkSubmit(ele,id){x=document.getElementById(id);if(ele.checked==true)x.disabled=false;else x.disabled=true;}</script>
<script type="text/javascript">function clearField(){if(document.getElementById){document.chatform.reset();}}</script>
<input type=checkbox name=myCheck onclick="checkSubmit(this, 'mySubmit')" value=y />spam
check box
<input type=submit name=submit value=Submit id=mySubmit disabled />
<input type=reset value=Clear>
</div>
</div>
</div>
</form>
<div><p>Thank You</p></div>
<a href="https://www.facebook.com/WlctWeenRadio/" target="_blank">
See us on facebook</a><br>
<div><p></p></div>
<a href="https://www.facebook.com/WlctWeenRadio/">
<img alt="Facebook" class="auto-style11" height="75" src="images/FB.png" width="77"></a><br>
<div><p></p></div>
<p></p>
<!-- Start of StatCounter Code for Frontpage 2002 -->
<p align="center"><span class="auto-style10">You are visitor number</span>
<script type="text/javascript">
var sc_project=11080465;
var sc_invisible=0;
var sc_security="91dff9ee";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
</div>
<noscript>
<div class="statcounter"><a title="Web Analytics
Made Easy - StatCounter" href="http://statcounter.com/"
target="_blank"><img class="statcounter"
src="//c.statcounter.com/11495533/0/399984cf/0/" alt="Web
Analytics Made Easy - StatCounter"></a></div></noscript>
<!-- End of StatCounter Code for Frontpage 2002 -->
</div>
<div class="col-sm-6 content-item-1 background">
<div class="blog-content">
<td style="height: 200px"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d12824.253490240817!2d-86.01361292559578!3d36.52846546121384!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88668a047bd5c10d%3A0xdf84e1abc586788b!2sWLCT!5e0!3m2!1sen!2sus!4v1510776876536" width="100%" height="565" frameborder="0" style="border:0" allowfullscreen></iframe><!--webbot bot="HTMLMarkup" endspan --></td>
<h2 class="text-right"><Contact Info></h2>
231 Chaffin Road
Lafayette, TN 37083<br>
Phone: (615) 666-2169<br>
</div> Fax: (615) 666-8056
</div>
</div>
</div>
</div>
</section>
<style type="text/css">
.contact {
width: 50%;
}
.auto-style2 {
color: #FF0000;
font-family:Lucida Handwriting;
text-shadow: 3px 2px #0000ff;
}
.auto-style3 {
font-size: 34px;
color: #ff0000;
font-weight:800;
text-shadow: 2px 2px #0000ff;
}
.auto-style6 {
font-size: x-large;
color: #ff0000;
}
.auto-style8 {
font-size: x-large;
color: #0000FF;
}
.auto-style10 {
color: #FF0000;
font-size: large;
}
.auto-style11 {
margin-left: 2px;
}
.auto-style12 {
font-size: medium;
}
.auto-style13 {
color: #FF0000;
font-family: Lucida Handwriting;
text-shadow: 3px 2px #0000ff;
text-align: center;
}
</style/>
<div class="text-center footer">
<div class="container">
Copyright @ 2024 WLCT |
<a href="https://publicfiles.fcc.gov/fm-profile/wlct/contour-maps" target="_blank">Coverage Map</a> | <a target="_blank" href="https://publicfiles.fcc.gov/fm-profile/wlct">WLCT Public Inspection File</a> |
<a target="_blank" href="https://publicfiles.fcc.gov/am-profile/ween">WEEN Public Inspection File</a>
</div>
</div>
<script src="js/noright-select.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.singlePageNav.min.js"></script>
<script>
// Check scroll position and add/remove background to navbar
function checkScrollPosition() {
if($(window).scrollTop() > 50) {
$(".fixed-header").addClass("scroll");
} else {
$(".fixed-header").removeClass("scroll");
}
}
$(document).ready(function () {
// Single page nav
$('.fixed-header').singlePageNav({
offset: 59,
filter: ':not(.external)',
updateHash: true
});
checkScrollPosition();
// nav bar
$('.navbar-toggle').click(function(){
$('.main-menu').toggleClass('show');
});
$('.main-menu a').click(function(){
$('.main-menu').removeClass('show');
});
});
$(window).on("scroll", function() {
checkScrollPosition();
});
</script>
<!-- end footer -->
<!-- Start Alert -->
<!-- End Alert -->
</body>
</html>