<!--

if (document.images)
{
	messageboard_off = new Image();
	messageboard_off.src = "/images/messageboard_off.jpg";
	messageboard_on = new Image();
	messageboard_on.src = "/images/messageboard_on.jpg";
	
	photogallery_off = new Image();
	photogallery_off.src = "/images/photogallery_off.jpg";
	photogallery_on = new Image();
	photogallery_on.src = "/images/photogallery_on.jpg";
	
	biography_off = new Image();
	biography_off.src = "/images/biography_off.jpg";
	biography_on = new Image();
	biography_on.src = "/images/biography_on.jpg";
	

}

function over(imageName)
{
	if (document.images)
	{
		document[imageName].src = eval(imageName + "_on.src");
	}
}

function out(imageName)
{
	if (document.images)
	{
		document[imageName].src = eval(imageName + "_off.src");
	}
}

-->