<!--//
if (document.images) {
 homeon = new Image(); homeon.src = "/images/navigation/home02.gif";
 homeoff = new Image(); homeoff.src = "/images/navigation/home01.gif";
 
 infoon = new Image(); infoon.src = "/images/navigation/info02.gif";
 infooff = new Image(); infooff.src = "/images/navigation/info01.gif";

 officerson = new Image(); officerson.src = "/images/navigation/officers02.gif";
 officersoff = new Image(); officersoff.src = "/images/navigation/officers01.gif";
 
 directorson = new Image(); directorson.src = "/images/navigation/directors02.gif";
 directorsoff = new Image(); directorsoff.src = "/images/navigation/directors01.gif";
 
 honoraryon = new Image(); honoraryon.src = "/images/navigation/honorary02.gif";
 honoraryoff = new Image(); honoraryoff.src = "/images/navigation/honorary01.gif";
 
 directoryon = new Image(); directoryon.src = "/images/navigation/directory02.gif";
 directoryoff = new Image(); directoryoff.src = "/images/navigation/directory01.gif";
     
 architectson = new Image(); architectson.src = "/images/navigation/architects02.gif";
 architectsoff = new Image(); architectsoff.src = "/images/navigation/architects01.gif";

 laboron = new Image(); laboron.src = "/images/navigation/labor02.gif";
 laboroff = new Image(); laboroff.src = "/images/navigation/labor01.gif";
 
 welfareon = new Image(); welfareon.src = "/images/navigation/welfare02.gif";
 welfareoff = new Image(); welfareoff.src = "/images/navigation/welfare01.gif";
 
 benefitson = new Image(); benefitson.src = "/images/navigation/benefits02.gif";
 benefitsoff = new Image(); benefitsoff.src = "/images/navigation/benefits01.gif";
 
 applicationon = new Image(); applicationon.src = "/images/navigation/application02.gif";
 applicationoff = new Image(); applicationoff.src = "/images/navigation/application01.gif";
         
 memberson = new Image(); memberson.src = "/images/navigation/members02.gif";
 membersoff = new Image(); membersoff.src = "/images/navigation/members01.gif";

 topon = new Image(); topon.src = "/images/navigation/top02.gif";
 topoff = new Image(); topoff.src = "/images/navigation/top01.gif"; 
 
}

function act(imgName){
  if (document.images)  document[imgName].src = eval(imgName + 'on.src')	
}

function inact(imgName) {
	if (document.images)  document[imgName].src = eval(imgName + 'off.src')
}

// Message in the statusbar

function stat(msg) {
	document.returnValue = false;
	if (document.images) { 
		window.status = msg;
		document.returnValue = true;
	}
}
//-->
