<!-- 

function getBrowser()
{
        browser= navigator.appName;
        version = navigator.appVersion;
        accept = version.substring(0, 1); 
        if ( (browser == "Netscape") && ( accept >= 3 ) ) return 1;
        if ( (browser == "Microsoft Internet Explorer") && ( accept >= 4) ) return 1;
        return 0;
}

function switchGraphic(num, name)
{
       if (getBrowser()){
          document.images[name].src = img[num].src;}
}
		
		pic=new Array();
        pic[0]="images/buttons/church_off.gif"; 
        pic[1]="images/buttons/church_on.gif";
		pic[2]="images/buttons/pastor_off.gif"; 
        pic[3]="images/buttons/pastor_on.gif";
		pic[4]="images/buttons/moconf_off.gif"; 
        pic[5]="images/buttons/moconf_on.gif";
		pic[6]="images/buttons/home_off.gif";
		pic[7]="images/buttons/home_on.gif";
		pic[8]="images/buttons/about_off.gif";
		pic[9]="images/buttons/about_on.gif";	
				
if (getBrowser())
{
       img = new Array();
       for (i = 0; i < pic.length; i++)
	   {
          img[i] = new Image();
          img[i].src = pic[i];
		}
}                          

// -->