// JavaScript Document

function foreground(id){
	document.getElementById(id).style.borderColor='#660066';
	document.getElementById(id).style.color='black';
	
}

function background(id){
	document.getElementById(id).style.borderColor='black';
	document.getElementById(id).style.color='#666666';
	
}
