// JavaScript Document

function over(targ){
	//who.style.borderColor='#8399be';
	document.getElementById( targ ).style.textDecoration = 'underline';
	document.getElementById( targ ).style.color = '#667273';
}

function out(targ){
//function out(who,targ){
	//who.style.borderColor='#50668B';
	document.getElementById( targ ).style.textDecoration = 'none';
	document.getElementById( targ ).style.color = '#99A3A7';
	//alert(targ + " ?? "+document.getElementById( targ ).style.textDecoration)
}



