// Functions for changing color and decoration of links

function m_over(obj){
	obj.style.backgroundColor="#CCEEFF";
}

function m_out(obj){
	obj.style.backgroundColor="white";
}
