function handleOver(b){
	if(b && b.style){
		b.style.textDecoration = 'underline';
		b.style.cursor='pointer';
	}
}
function handleOut(b){
	if(b && b.style){
		b.style.textDecoration = 'none';	
		b.style.cursor='default';
	}
}