
<!--

if (document.images) {
        newson = new Image(); newson.src = "img/news_03.jpg";
        newsoff = new Image(); newsoff.src = "img/news_01.jpg";

        churchon = new Image(); churchon.src = "img/church_03.jpg";
        churchoff = new Image(); churchoff.src = "img/church_01.jpg";

        pastoron = new Image(); pastoron.src = "img/pastor_03.jpg";
        pastoroff = new Image(); pastoroff.src = "img/pastor_01.jpg";

        serviceon = new Image(); serviceon.src = "img/service_03.jpg";
        serviceoff = new Image(); serviceoff.src = "img/service_01.jpg";

        projectson = new Image(); projectson.src = "img/projects_03.jpg";
        projectsoff = new Image(); projectsoff.src = "img/projects_01.jpg";

        unionon = new Image(); unionon.src = "img/union_03.jpg";
        unionoff = new Image(); unionoff.src = "img/union_01.jpg";

        charityon = new Image(); charityon.src = "img/charity_03.jpg";
        charityoff = new Image(); charityoff.src = "img/charity_01.jpg";

        forumon = new Image(); forumon.src = "img/forum_03.jpg";
        forumoff = new Image(); forumoff.src = "img/forum_01.jpg";

        contacton = new Image(); contacton.src = "img/contact_03.jpg";
        contactoff = new Image(); contactoff.src = "img/contact_01.jpg";
}

function point(ImageName)
       { if (document.images) {document[ImageName].src = eval(ImageName+ "on.src");} }

function nopoint(ImageName)
      { if (document.images) {document[ImageName].src = eval(ImageName+ "off.src");} }
// -->







// JavaScript Document

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;