﻿function swapin(id, id2, id3) {	document.getElementById(id).style.borderBottom = '5px solid #ff0000';	document.getElementById(id2).style.borderBottom = '5px solid #ff0000';	document.getElementById(id3).style.borderTop = '5px solid #ff0000';}function swapout(id, id2, id3) {	document.getElementById(id).style.borderBottom = '5px solid #53300a';	document.getElementById(id2).style.borderBottom = '5px solid #53300a';	document.getElementById(id3).style.borderTop = '5px solid #53300a';}