if (document.images)
	{
	homeoff= new Image(140,24);
	homeoff.src="images/b_home_off.gif";

	homeon= new Image(140,24);
	homeon.src="images/b_home_on.gif";  

	homemessage= "Back to the home page";

	aboutoff= new Image(140,24);
	aboutoff.src="images/b_about_off.gif";

	abouton= new Image(140,24);
	abouton.src="images/b_about_on.gif";  

	aboutmessage= "About Us";

	copyoff= new Image(140,24);
	copyoff.src="images/b_copy_off.gif";

	copyon= new Image(140,24);
	copyon.src="images/b_copy_on.gif";  

	copymessage= "Get a Copy by Post";

	outletsoff= new Image(140,24);
	outletsoff.src="images/b_outlets_off.gif";

	outletson= new Image(140,24);
	outletson.src="images/b_outlets_on.gif";  

	outletsmessage= "Sales Outlets";

	walkoff= new Image(140,24);
	walkoff.src="images/b_walk_off.gif";

	walkon= new Image(140,24);
	walkon.src="images/b_walk_on.gif";  

	walkmessage= "This Month's Walk";

	stayoff= new Image(140,24);
	stayoff.src="images/b_stay_off.gif";

	stayon= new Image(140,24);
	stayon.src="images/b_stay_on.gif";  

	staymessage= "Where to Stay";

	commentsoff= new Image(140,24);
	commentsoff.src="images/b_comments_off.gif";

	commentson= new Image(140,24);
	commentson.src="images/b_comments_on.gif";  

	commentsmessage= "Readers Comments";

	emailoff= new Image(140,24);
	emailoff.src="images/b_email_off.gif";

	emailon= new Image(140,24);
	emailon.src="images/b_email_on.gif";  

	emailmessage= "E-mail Us";
	
	linksoff= new Image(140,24);
	linksoff.src="images/b_links_off.gif";

	linkson= new Image(140,24);
	linkson.src="images/b_links_on.gif";  

	linksmessage= "Links";
	
	eventsoff= new Image(140,24);
	eventsoff.src="images/b_events_off.gif";

	eventson= new Image(140,24);
	eventson.src="images/b_events_on.gif";  

	eventsmessage= "Events Diary";
    }

function activate(imgName)
{
if (document.images)
	{
	document.images[imgName].src=eval(imgName + "on.src");
	window.status=eval(imgName + "message");
	}
}

function deactivate(imgName)
{
if (document.images)
	{
	document.images[imgName].src=eval(imgName + "off.src");
	window.status="";
	}
}