
// Author:    Carl Camera
// Title:     navbar-bottom.js
// Purpose:   presents animated navigation bar
// Usage:     <script src=navbar-bottom.js></script>

   if (document.images) {
	img11on  = new Image();   img11on.src  = "./images/nav_news_hi.gif";
	img12on  = new Image();   img12on.src  = "./images/nav_about_hi.gif";
	img13on  = new Image();   img13on.src  = "./images/nav_tips_hi.gif";
	img15on  = new Image();   img15on.src  = "./images/nav_tolcna_hi.gif";

	img11off = new Image();   img11off.src = "./images/nav_news_lo.gif";
	img12off = new Image();   img12off.src = "./images/nav_about_lo.gif";
	img13off = new Image();   img13off.src = "./images/nav_tips_lo.gif";
	img15off = new Image();   img15off.src = "./images/nav_tolcna_lo.gif";
        }

    function imgOn(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "on.src");
        }
    }

    function imgOff(imgName) {
        if (document.images) {
           document[imgName].src = eval(imgName + "off.src");
        }
    }

    function monthName(indX) {
        monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
        return monthNames[indX];
    }

var now = new Date(document.lastModified);
yr=now.getYear();
yr1=(yr<=1000?1900+yr:yr);





document.write("<table WIDTH=600 border=0 cellspacing=0 cellpadding=0>                                                 ");
document.write("<tr>  ");
document.write("    <td><A HREF=index.html   onclick=return true onmouseover=imgOn('img11') onmouseout=imgOff('img11')><IMG SRC=./images/nav_news_lo.gif   NAME=img11 BORDER=0 HEIGHT=15 WIDTH=120 ALT='News-Events'></A></td>");
document.write("    <td><A HREF=about.html   onclick=return true onmouseover=imgOn('img12') onmouseout=imgOff('img12')><IMG SRC=./images/nav_about_lo.gif  NAME=img12 BORDER=0 HEIGHT=15 WIDTH=120 ALT='About LCHGC'></A></td>");
document.write("    <td><A HREF=tips.html    onclick=return true onmouseover=imgOn('img13') onmouseout=imgOff('img13')><IMG SRC=./images/nav_tips_lo.gif   NAME=img13 BORDER=0 HEIGHT=15 WIDTH=120 ALT='Garden Tips'></A></td>");
document.write("    <td><IMG SRC=./images/nav_blank.gif HEIGHT=15 WIDTH=120></td>");
document.write("    <td><A HREF='../index.php' onclick=return true onmouseover=imgOn('img15') onmouseout=imgOff('img15')><IMG SRC='./images/nav_tolcna_lo.gif' NAME='img15' BORDER=0 HEIGHT=15 WIDTH=120 ALT='To LCNA'></A></td>");
document.write("</tr></table><table WIDTH=600 border=0 cellspacing=0 cellpadding=0><tr>                                                                                              ");
document.write("    <td WIDTH=200 VALIGN=TOP ROWSPAN=2><A HREF='../index.htm'><IMG SRC='./images/lcnacopy.gif' BORDER=0 WIDTH=200 HEIGHT=40></A></td>");
document.write("    <td WIDTH=400 VALIGN=BOTTOM ALIGN=RIGHT><FONT FACE='tahoma, verdana, ariel' SIZE=1>This page last updated: ");
document.write(     now.getDate() + ' ' + monthName(now.getMonth()) + ' ' + yr1                                         );
document.write("    </FONT></TD></TR>                                                                                  ");
document.write("<TR><TD VALIGN=TOP ALIGN=RIGHT><FONT FACE='tahoma, verdana, ariel' SIZE=1>LCNA Webmaster: Jim Hargrove<a href='../index.php?Location=feedback.php'><IMG SRC='./images/email-icon.gif' BORDER=0 HEIGHT=11 WIDTH=14></a></FONT></TD>");
document.write("</tr></table>");















