if (document.images)
	{

	//top row buttons
	
	homepageon= new Image(73,19);
	homepageon.src="images/b_on_homepage.gif";  
	homepageoff= new Image(79,19);
	homepageoff.src="images/b_off_homepage.gif";
	homepagemessage= "Go to our home page";
	
	aboutuson= new Image(66,19);
	aboutuson.src="images/b_on_aboutus.gif";  
	aboutusoff= new Image(66,19);
	aboutusoff.src="images/b_off_aboutus.gif";
	aboutusmessage= "About Three Peaks";
	
	howtoshopon= new Image(98,19);
	howtoshopon.src="images/b_on_howtoshop.gif";  
	howtoshopoff= new Image(98,19);
	howtoshopoff.src="images/b_off_howtoshop.gif";
	howtoshopmessage= "How to shop on our web site";
	
	contactuson= new Image(86,19);
	contactuson.src="images/b_on_contactus.gif";  
	contactusoff= new Image(86,19);
	contactusoff.src="images/b_off_contactus.gif";
	contactusmessage= "For more information please contact us";
	
	viewbasketon= new Image(176,19);
	viewbasketon.src="images/b_on_viewbasket.gif";  
	viewbasketoff= new Image(176,19);
	viewbasketoff.src="images/b_off_viewbasket.gif";
	viewbasketmessage= "View the contents of your shopping basket and proceed to checkout";
	

	//side bar buttons

	accessorieson= new Image(118,20);
	accessorieson.src="images/b_on_accessories.gif";  
	accessoriesoff= new Image(118,20);
	accessoriesoff.src="images/b_off_accessories.gif";
	accessoriesmessage= "We stock a variety of outdoor accessories";

	childrenson= new Image(118,20);
	childrenson.src="images/b_on_childrens.gif";  
	childrensoff= new Image(118,20);
	childrensoff.src="images/b_off_childrens.gif";
	childrensmessage= "Our range of outdoor clothing for children";

	footwearon= new Image(118,20);
	footwearon.src="images/b_on_footwear.gif";  
	footwearoff= new Image(118,20);
	footwearoff.src="images/b_off_footwear.gif";
	footwearmessage= "Our range of outdoor footwear";

	outerwearon= new Image(118,20);
	outerwearon.src="images/b_on_outerwear.gif";  
	outerwearoff= new Image(118,20);
	outerwearoff.src="images/b_off_outerwear.gif";
	outerwearmessage= "Our range of outerwear and waterproof clothing";

	productcareon= new Image(118,20);
	productcareon.src="images/b_on_productcare.gif";  
	productcareoff= new Image(118,20);
	productcareoff.src="images/b_off_productcare.gif";
	productcaremessage= "How to get the best out of your purchases";

	rucksackson= new Image(118,20);
	rucksackson.src="images/b_on_rucksacks.gif";  
	rucksacksoff= new Image(118,20);
	rucksacksoff.src="images/b_off_rucksacks.gif";
	rucksacksmessage= "Our range of rucksacks";

	sleepingbagson= new Image(118,20);
	sleepingbagson.src="images/b_on_sleepingbags.gif";  
	sleepingbagsoff= new Image(118,20);
	sleepingbagsoff.src="images/b_off_sleepingbags.gif";
	sleepingbagsmessage= "Our range of sleeping bags";

	tentson= new Image(118,20);
	tentson.src="images/b_on_tents.gif";  
	tentsoff= new Image(118,20);
	tentsoff.src="images/b_off_tents.gif";
	tentsmessage= "Our range of tents";

	travelclothingon= new Image(118,20);
	travelclothingon.src="images/b_on_travelclothing.gif";  
	travelclothingoff= new Image(118,20);
	travelclothingoff.src="images/b_off_travelclothing.gif";
	travelclothingmessage= "Our range of travel clothing";

	travelequipmenton= new Image(118,20);
	travelequipmenton.src="images/b_on_travelequipment.gif";  
	travelequipmentoff= new Image(118,20);
	travelequipmentoff.src="images/b_off_travelequipment.gif";
	travelequipmentmessage= "Our range of travel equipment";

	sedproductson= new Image(118,20);
	sedproductson.src="images/b_on_sedproducts.gif";  
	sedproductsoff= new Image(118,20);
	sedproductsoff.src="images/b_off_sedproducts.gif";
	sedproductsmessage= "Our range of Sedbergh School products";

	locationon= new Image(118,20);
	locationon.src="images/b_on_location.gif";  
	locationoff= new Image(118,20);
	locationoff.src="images/b_off_location.gif";
	locationmessage= "The location of our shops";
	
	}


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="Three Peaks - Specialists in UK mail order outdoor clothing and accessories";
		}
	}

