// Below tells each html page just what to show at the top of each page
// All pages get the ESC logo at the top but if you're on a ktg page
// don't show any of the wtgl stuff. Inversly, if you're on a wtgl page
// don't show any of the ktg stuff.
// Each and every page with show kytravel-menu via css. - Brian
document.write('\
<table border="0" align="center" width="100%" background="/esc/base/shared/images/kytravel-menu-bg.jpg" ><tr><td>\
<table border="0" align="center"><tr><td>\
<A name="TOP" accesskey="T" href="" hreflang="en" title="Top of page"></A>\
<ul id=\'kytravel-menu\'>\
<li ><a href=\'http://www.kytravel.com/esc/index.html\'>Home</a></li>\
<li ><a href=\'http://www.kytravel.com/esc/ktghome.html\'>Kentucky Travel Guide</a></li>\
<li ><a href=\'http://www.kytravel.com/esc/wtglhome.html\'>What's Happening in Greater Louisville</a></li>\
</ul>\
</td></tr></table>\
</td></tr></table>\
'); 
// If the body id is "home" then show the base home page
if (document.body.id=="home") {
  (document.write('<center><a href="/esc/ktghome.html" border="0"><img src="/esc/base/ktg/images/logohead.gif" border="0"></a><a href="/esc/wtglhome.html" border="0"><img src="/esc/base/wtgl/images/logohead.gif" border="0"></a></center>'))
};
// If the body id is "ktg" (there a lots of ktg pages) then show the ktg masthead.
if (document.body.id=="ktg") {
  (document.write('<center><a href="/esc/ktghome.html" border="0"><img src="/esc/base/ktg/images/logohead.gif" border="0"></a><br><!-- <a href=\"/esc/base/ktg/content/10 Editorial 100dpi.pdf\" alt=\"pdf version of current issue.\">Current Issue PDF</a><p class=\"/p\">\</p></center> -->'))
};
