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

	homeon= new Image(63,32);
	homeon.src="images/b_home_on.gif";  

	homemessage= "Back to the home page";

	rhymesoff= new Image(78,32);
	rhymesoff.src="images/b_rhymes_off.gif";

	rhymeson= new Image(78,32);
	rhymeson.src="images/b_rhymes_on.gif";  

	rhymesmessage= "Rhymes";

	guestpoemsoff= new Image(116,32);
	guestpoemsoff.src="images/b_guestpoems_off.gif";

	guestpoemson= new Image(116,32);
	guestpoemson.src="images/b_guestpoems_on.gif";  

	guestpoemsmessage= "Guest Poems";

	feedbackoff= new Image(87,32);
	feedbackoff.src="images/b_feedback_off.gif";

	feedbackon= new Image(87,32);
	feedbackon.src="images/b_feedback_on.gif";  

	feedbackmessage= "Feedback";

	authoroff= new Image(110,32);
	authoroff.src="images/b_author_off.gif";

	authoron= new Image(110,32);
	authoron.src="images/b_author_on.gif";  

	authormessage= "The Author";
    }

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