<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var color		= "F21445"	// HORZ MENU BACKGROUND COLOR
var bordercolor		= "F21445"	// HORZ MENU BOTTOM BORDER COLOR
var date 		= "no" 	// SHOW DATE



document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'" style="border-bottom: #'+bordercolor+' 1px solid;" class="printhide"><tr><td align="left">');


document.write('<TABLE cellpadding="0" cellspacing="3" border="0"><tr><td>');
document.write('&nbsp;<br>');


// START HORIZONTAL LINKS - COPY AND PASTE THE NEXT 2 LINES TO ADD A LINK




document.write('</td><td>');
document.write('<span class="whitetext">&nbsp&nbsp&nbsp&nbsp 1030 College Drive,  Madisonville, Ky 42431 </span>');

document.write('</td><td width="400">');

document.write('</td><td>');
document.write('<span class="whitetext"> Phone: &nbsp (270) 821-5335 </span>');


document.write('</td></tr></table>');
document.write('</td><td width="1">');
document.write('<img src="picts/spacer.gif" HEIGHT="5" width="1"><br>');
document.write('</td></tr></table>');






// START DATE SCRIPT

// COPYRIGHT 2006 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

   if (date == "yes") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"headermenu\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}



//  End -->