<!--

//detect if browser if Netscape 3+ or IE 4+

bName = navigator.appName;

bVer = parseInt(navigator.appVersion);

if ((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4))



br = "good";



else



br = "bad";



if (br == "good")



{
	
	
	
	//new_image on mouseover
	
	
	
	homeshow= new Image();
	
	homeshow.src="home2.gif";
	
	our_churchshow= new Image();
	
	our_churchshow.src="our_church2.gif";
	
	fiashow= new Image();
	
	fiashow.src="fia2.gif";
		
	youthshow= new Image();
	
	youthshow.src="youth2.gif";
	
	calendarshow= new Image();
	
	calendarshow.src="calendar2.gif";
		
	contactshow= new Image();
	
	contactshow.src="contact2.gif";	

	
	//image_return on mouseout
	
	
	
	homehide= new Image();
	
	homehide.src="home.gif";
	
	our_churchhide= new Image();
	
	our_churchhide.src="our_church.gif";
	
	fiahide= new Image();
	
	fiahide.src="fia.gif";
		
	youthhide= new Image();
	
	youthhide.src="youth.gif";
	
	calendarhide= new Image();
	
	calendarhide.src="calendar.gif";
		
	contacthide= new Image();
	
	contacthide.src="contact.gif";	



	
}



//onMouseOver runs the imgAct() function





function imgAct(imgName)



{
	
	
	
	if (br == "good")
	
	
	
	{
		
		
		
		document[imgName].src = eval(imgName + "show.src");
		
		
		
	}
	
	
	
}



//onMouseOut runs the imgInact() function





function imgInact(imgName)



{
	
	
	
	if (br == "good")
	
	
	
	{
		
		
		
		document[imgName].src = eval(imgName + "hide.src");
		
		
		
	}
	
	
	
}
