if (document.images)
	{

	farthingon= new Image(123,20);
	farthingon.src="images/b_on_farthing.gif";  
	farthingoff= new Image(123,20);
	farthingoff.src="images/b_off_farthing.gif";
	farthingmessage= "";

	shillingon= new Image(123,20);
	shillingon.src="images/b_on_shilling.gif";  
	shillingoff= new Image(123,20);
	shillingoff.src="images/b_off_shilling.gif";
	shillingmessage= "";

	priceson= new Image(123,20);
	priceson.src="images/b_on_prices.gif";  
	pricesoff= new Image(123,20);
	pricesoff.src="images/b_off_prices.gif";
	pricesmessage= "";

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

	homepageon= new Image(123,20);
	homepageon.src="images/b_on_homepage.gif";  
	homepageoff= new Image(123,20);
	homepageoff.src="images/b_off_homepage.gif";
	homepagemessage= "Return to our home 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="Willow Bay Boats - UK suppliers of mail order sailing boats";
		}
	}

