if (document.images)
	{
	homepageon= new Image(120,28);
	homepageon.src="images/b_on_homepage.jpg";  
	homepageoff= new Image(120,28);
	homepageoff.src="images/b_off_homepage.jpg";
	homepagemessage= "Return to our home page";

	bedandbreakfaston= new Image(120,28);
	bedandbreakfaston.src="images/b_on_bedandbreakfast.jpg";  
	bedandbreakfastoff= new Image(120,28);
	bedandbreakfastoff.src="images/b_off_bedandbreakfast.jpg";
	bedandbreakfastmessage= "Bed & breakfast accommodation in the English Lake District";

	thecottageson= new Image(120,28);
	thecottageson.src="images/b_on_thecottages.jpg";  
	thecottagesoff= new Image(120,28);
	thecottagesoff.src="images/b_off_thecottages.jpg";
	thecottagesmessage= "Self catering cottages and accommodation in the English Lake District";

	homeproduceon= new Image(120,28);
	homeproduceon.src="images/b_on_homeproduce.jpg";  
	homeproduceoff= new Image(120,28);
	homeproduceoff.src="images/b_off_homeproduce.jpg";
	homeproducemessage= "Our range of Lakeland home made produce";

	ourlocationon= new Image(120,28);
	ourlocationon.src="images/b_on_location.jpg";  
	ourlocationoff= new Image(120,28);
	ourlocationoff.src="images/b_off_location.jpg";
	ourlocationmessage= "Our location in Great Langdale in Cumbria";

	testimonon= new Image(120,28);
	testimonon.src="images/b_on_testimonials.jpg";  
	testimonoff= new Image(120,28);
	testimonoff.src="images/b_off_testimonials.jpg";
	testimonmessage= "Customer Comments";

	tariffon= new Image(120,28);
	tariffon.src="images/b_on_tariff.jpg";  
	tariffoff= new Image(120,28);
	tariffoff.src="images/b_off_tariff.jpg";
	tariffmessage= "Current Tariff";

	contactuson= new Image(120,28);
	contactuson.src="images/b_on_contactus.jpg";  
	contactusoff= new Image(120,28);
	contactusoff.src="images/b_off_contactus.jpg";
	contactusmessage= "For more information please contact us";

	on= new Image(120,28);
	on.src="images/b_on_.jpg";  
	off= new Image(120,28);
	off.src="images/b_off_.jpg";
	message= "";
    }

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="Millbeck Farm - bed & breakfast and self catering cottage accommodation in Great Langdale, in the English Lake District";
		}
	}
