function listover (name) {
	name.style.backgroundColor = '#F1F1F1';
	name.style.textDecoration = 'underline';
}

function listout (name) {
	name.style.backgroundColor = '#FFF';
	name.style.textDecoration = 'none';	
}