function Mover(){ 
window.event.srcElement.style.color = "#3333ff";
window.event.srcElement.style.textDecoration = "underline";
}
function Mout(){ 
window.event.srcElement.style.color = "#333333"; 
window.event.srcElement.style.textDecoration = "underline";
} 
function Moverlink(){ 
window.event.srcElement.style.color = "red";
window.event.srcElement.style.textDecoration = "underline";
}
function Moutlink(){ 
window.event.srcElement.style.color = "blue"; 
window.event.srcElement.style.textDecoration = "underline";
} 
