function MenuOver(imgName)
{
	// onMouseOver
	if (document.images)
	{
		document[imgName].src = imgList[imgName].over.src;
	}
}

function MenuOut(imgName)
{
	//onMouseOut 
	if (document.images)
	{
		document[imgName].src = imgList[imgName].out.src;
	}
}

function imgList(imgName)
{
	this.over = new Image();
	this.out = new Image();
	this.over.src = "/images/b/" + "bd" + imgName + ".gif";
	this.out.src = "/images/b/" + "bu" + imgName + ".gif";
}

if (document.images)
{
	imgList['home'] = new imgList('home');
	imgList['freight'] = new imgList('freight');
	imgList['notary'] = new imgList('notary');
	imgList['court'] = new imgList('court');
	imgList['messenger'] = new imgList('messenger');
	imgList['other'] = new imgList('other');
	imgList['intro'] = new imgList('intro');
}
