if (document.images)
	{

	beechhouseon= new Image(131,30);
	beechhouseon.src="images/b_on_beechhouse.gif";  
	beechhouseoff= new Image(131,30);
	beechhouseoff.src="images/b_off_beechhouse.gif";
	beechhousemessage= "Inside Beech House guest house in Windermere";

	locationon= new Image(131,30);
	locationon.src="images/b_on_location.gif";  
	locationoff= new Image(131,30);
	locationoff.src="images/b_off_location.gif";
	locationmessage= "The location of Beech House in the English Lake District";

	tariffon= new Image(131,30);
	tariffon.src="images/b_on_tariff.gif";  
	tariffoff= new Image(131,30);
	tariffoff.src="images/b_off_tariff.gif";
	tariffmessage= "Our tariff";

	contactuson= new Image(131,30);
	contactuson.src="images/b_on_contactus.gif";  
	contactusoff= new Image(131,30);
	contactusoff.src="images/b_off_contactus.gif";
	contactusmessage= "For more information please contact us";

	homepageon= new Image(131,30);
	homepageon.src="images/b_on_homepage.gif";  
	homepageoff= new Image(131,30);
	homepageoff.src="images/b_off_homepage.gif";
	homepagemessage= "Go to our home page";
	
	specialson= new Image(131,30);
	specialson.src="images/b_on_specials.gif";  
	specialsoff= new Image(131,30);
	specialsoff.src="images/b_off_specials.gif";
	specialsmessage= "Go to our special offers page";

	}


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="";
		}
	}

