
function mOver(cell){
	cell.style.cursor="hand";
	cell.getElementsByTagName('a')[0].style.color="#4197d2";
	window.status = cell.getElementsByTagName('a')[0].href;
	cell.style.backgroundColor = "#ffffff"; 
}

function mOut(cell){

	cell.style.cursor = "default"; 
	cell.getElementsByTagName('a')[0].style.color="#354860";
	window.status = "";
	cell.style.backgroundColor = "";
}


//--> 