<!-- 

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;}
}

       
        //INITIALIZING NEW IMAGE OBJECTS		
		
		pic=new Array();
        pic[0]="../images/buttons/enter_1.gif"; 
        pic[1]="../images/buttons/enter_2.gif";
	pic[2]="../images/buttons/emblems_1.gif"; 
        pic[3]="../images/buttons/emblems_2.gif";
	pic[4]="../images/buttons/button_newgodfam1.gif";
	pic[5]="../images/buttons/button_newgodfam2.gif";
	pic[6]="../images/buttons/partnerships_1.gif"; 
        pic[7]="../images/buttons/partnerships_2.gif";
	pic[8]="../images/buttons/publications_1.gif"; 
        pic[9]="../images/buttons/publications_2.gif";
	pic[10]="../images/buttons/order_1.gif"; 
        pic[11]="../images/buttons/order_2.gif";
	pic[12]="../images/buttons/about_1.gif"; 
        pic[13]="../images/buttons/about_2.gif";
	pic[14]="../images/buttons/home_1.gif"; 
        pic[15]="../images/buttons/home_2.gif";
	pic[16]="../images/buttons/video_3.gif"; 
        pic[17]="../images/buttons/video_4.gif";
        pic[18]="../images/buttons/godchurch_1.gif"; 
        pic[19]="../images/buttons/godchurch_2.gif";
        pic[20]="../images/buttons/prayProgram_1.gif";
        pic[21]="../images/buttons/prayProgram_2.gif";
		
if (getBrowser())
{
       img = new Array();
       for (i = 0; i < pic.length; i++)
	   {
          img[i] = new Image();
          img[i].src = pic[i];
		}
}                          

// --> 