function menuover(pThis) {
        pThis.childNodes[0].style.backgroundColor="#010ABB"
	pThis.childNodes[1].style.backgroundColor="#f1f1f1"
        pThis.style.cursor="hand"
}
function menuout(pThis) {
        pThis.childNodes[0].style.backgroundColor="#cccccc"
	pThis.childNodes[1].style.backgroundColor="#ffffff"
}