function swapBG(id){
	
	id.style.borderColor = '#000099'; 
	id.onmouseout = function(){
		
		id.style.borderColor = '#d7d7d7';
	}
}