if (document.images)
	{
	aboutuson= new Image(120,18);
	aboutuson.src="images/b_on_aboutus.gif";  
	aboutusoff= new Image(120,18);
	aboutusoff.src="images/b_off_aboutus.gif";
	aboutusmessage= "About Casterton Golf Course";
	
	thecourseon= new Image(120,17);
	thecourseon.src="images/b_on_thecourse.gif";  
	thecourseoff= new Image(120,17);
	thecourseoff.src="images/b_off_thecourse.gif";
	thecoursemessage= "Take a look at our course";
	
	latestnewson= new Image(120,19);
	latestnewson.src="images/b_on_latestnews.gif";  
	latestnewsoff= new Image(120,19);
	latestnewsoff.src="images/b_off_latestnews.gif";
	latestnewsmessage= "Latest News from Casterton Golf Course";
	
	contactuson= new Image(120,19);
	contactuson.src="images/b_on_contactus.gif";  
	contactusoff= new Image(120,19);
	contactusoff.src="images/b_off_contactus.gif";
	contactusmessage= "Need more information please contact us";
	
	homepageon= new Image(120,23);
	homepageon.src="images/b_on_homepage.gif";  
	homepageoff= new Image(120,23);
	homepageoff.src="images/b_off_homepage.gif";
	homepagemessage= "Go 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="Casterton Golf Course - Golfing at Casterton, Near Kirkby Lonsdale in the English Lake District";
		}
	}