if (document.images)
	{

	homeon= new Image(131,20);
	homeon.src="images/b_on_home.gif";  
	homeoff= new Image(131,20);
	homeoff.src="images/b_off_home.gif";
	homemessage= "Go to our home page";

	insideon= new Image(131,20);
	insideon.src="images/b_on_inside.gif";  
	insideoff= new Image(131,20);
	insideoff.src="images/b_off_inside.gif";
	insidemessage= "Take a look inside The Old School";

	tariffon= new Image(131,20);
	tariffon.src="images/b_on_tariff.gif";  
	tariffoff= new Image(131,20);
	tariffoff.src="images/b_off_tariff.gif";
	tariffmessage= "Our tariffs";

	mlocationon= new Image(131,20);
	mlocationon.src="images/b_on_location.gif";  
	mlocationoff= new Image(131,20);
	mlocationoff.src="images/b_off_location.gif";
	mlocationmessage= "Our location in the English Lake District";

	menuon= new Image(131,20);
	menuon.src="images/b_on_menu.gif";  
	menuoff= new Image(131,20);
	menuoff.src="images/b_off_menu.gif";
	menumessage= "Our sample menus";
	
	linkson= new Image(131,20);
	linkson.src="images/b_on_visitor.gif";  
	linksoff= new Image(131,20);
	linksoff.src="images/b_off_visitor.gif";
	linksmessage= "Links to Other Websites of Interest";

	commentson= new Image(131,20);
	commentson.src="images/b_on_comments.gif";  
	commentsoff= new Image(131,20);
	commentsoff.src="images/b_off_comments.gif";
	commentsmessage= "Guest Comments";
	
	contactuson= new Image(131,20);
	contactuson.src="images/b_on_contactus.gif";  
	contactusoff= new Image(131,20);
	contactusoff.src="images/b_off_contactus.gif";
	contactusmessage= "For booking enquiries please contact us";

	}


function activate(imgName)
	{
	if (document.images)
		{
		imgOn=eval(imgName + "on.src");
		document[imgName].src= imgOn;
		imgMess=eval(imgName + "message");
		window.status=imgMess;
		}
	}

function deactivate(imgName)
	{
	if (document.images)
		{
		imgOff=eval(imgName + "off.src");
		document[imgName].src= imgOff;
		window.status="";
		}
	}

 
