function imageRollOver(id)
{
	document.getElementById(id).style.border = "3px solid #9C986D";
}
function imageRollOut(id)
{
	document.getElementById(id).style.border = "3px solid #000000";
}