function menuprocess(action,obj){
	var tmpobj = null;
	var tmploc = "home.aspx";
	if(	obj == 1){tmpobj = menu1;tmploc = "default.htm";}
	if(	obj == 2){tmpobj = menu2;tmploc = "services.htm";}
	if(	obj == 3){tmpobj = menu3;tmploc = "mission.htm";}
	if(	obj == 4){tmpobj = menu4;tmploc = "casestudies.htm";}
	if(	obj == 5){tmpobj = menu5;tmploc = "contact.htm";}
	if(tmpobj != null){
		if(action == "over"){tmpobj.src = "images/menu" + obj + "on.gif"; }
		if(action == "out"){tmpobj.src = "images/menu" + obj + ".gif";}
		if(action == "click"){document.location = tmploc;}
		
	}
	
}
