
	if (document.images) {



	}	var jointhecluboff = new Image();
		jointhecluboff.src = "images/nav_join-the-club_off.gif";
		var jointheclubon = new Image();
		jointheclubon.src = "images/nav_join-the-club_on.gif";	

		var eventsoff = new Image();
		eventsoff.src = "images/nav_events_off.gif";
		var eventson = new Image();
		eventson.src = "images/nav_events_on.gif";	
		
		var aboutoff = new Image();
		aboutoff.src = "images/nav_about_off.gif";
		var abouton = new Image();
		abouton.src = "images/nav_about_on.gif";		

		var membersoff = new Image();
		membersoff.src = "images/nav_members_off.gif";
		var memberson = new Image();
		memberson.src = "images/nav_members_on.gif";		

		var resourcesoff = new Image();
		resourcesoff.src = "images/nav_resources_off.gif";
		var resourceson = new Image();
		resourceson.src = "images/nav_resources_on.gif";	
		
		var contactoff = new Image();
		contactoff.src = "images/nav_contact_off.gif";
		var contacton = new Image();
		contacton.src = "images/nav_contact_on.gif";		
	
					
	var isMenuAct = false; // the menu is not active yet
	
	function actMenuItem(imgName) {
	  isMenuAct = true; // the menu is now active
	  act(imgName);
	}
	
	function inactMenuItem(imgName) {
	  isMenuAct = false; // the menu is no longer active
	  if (document.images) {
	    inact(imgName);
	  }
	}
	
	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");
	}



