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

	homeon= new Image(160,25);
	homeon.src="images/b_home_on.gif";  

	homemessage= "Back to the home page";
	
	aboutoff= new Image(160,25);
	aboutoff.src="images/b_about_off.gif";

	abouton= new Image(160,25);
	abouton.src="images/b_about_on.gif";  

	aboutmessage= "About Us";
	
	productoff= new Image(160,25);
	productoff.src="images/b_product_off.gif";

	producton= new Image(160,25);
	producton.src="images/b_product_on.gif";  

	productmessage= "Product Range";
	
	viewcartoff= new Image(160,25);
	viewcartoff.src="images/b_viewcart_off.gif";

	viewcarton= new Image(160,25);
	viewcarton.src="images/b_viewcart_on.gif";  

	viewcartmessage= "View Cart";
	
	orderingoff= new Image(160,25);
	orderingoff.src="images/b_ordering_off.gif";

	orderingon= new Image(160,25);
	orderingon.src="images/b_ordering_on.gif";  

	orderingmessage= "How to Order";
	
	locoff= new Image(160,25);
	locoff.src="images/b_location_off.gif";

	locon= new Image(160,25);
	locon.src="images/b_location_on.gif";  

	locmessage= "Location";
	
	contactoff= new Image(160,25);
	contactoff.src="images/b_contact_off.gif";

	contacton= new Image(160,25);
	contacton.src="images/b_contact_on.gif";  

	contactmessage= "Contact Us";
	
	newsoff= new Image(160,25);
	newsoff.src="images/b_news_off.gif";

	newson= new Image(160,25);
	newson.src="images/b_news_on.gif";  

	newmessage= "News";
	
	linksoff= new Image(160,25);
	linksoff.src="images/b_links_off.gif";

	linkson= new Image(160,25);
	linkson.src="images/b_links_on.gif";  

	linksmessage= "Links";
    }

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

function showfriend()
{
var thisloc = new String(document.location);
url = "http://www.thegreendoorsweetshop.co.uk/friendform.htm?"+escape(thisloc);
var window_width = 320;
var window_height = 280;
var sw = screen.width;
var sh = screen.height;
var window_left = ((sw/2) - (window_width/2) - 16);
var window_top = ((sh/2) - (window_height/2) - 20);
friendwin = open(url,"friend","width="+ window_width +",height="+ window_height +",scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,left="+ window_left +",top="+ window_top +",screenx="+ window_left +",screeny="+ window_top);
}