	/***********************
	*  Border Highlighter  *
	***********************/
		/* Highlight Color */
			function switchBorderOn( thisId ) {
				document.getElementById( thisId ).style.borderColor = '#37BF9D';	
			}
		/* Background Color, DO NOT CHANGE */
			function switchBorderOff( thisId ) {
				document.getElementById( thisId ).style.borderColor = '#fdfbf8';
			}
	/**********************/