function mClk(theCell){
	var a = theCell.getElementsByTagName("A");
	if(a.length > 0) a[0].click();
}
function mOvr(theCell){
	var a = theCell.getElementsByTagName("A");
	if(a.length > 0) a[0].className='linkBoldWhite';
	theCell.className='menuMagenta'; 
	theCell.style.cursor='hand'; 
}
function mOut(theCell,stil,linkstil){
	var a = theCell.getElementsByTagName("A");
	if(a.length > 0) a[0].className=linkstil;
	theCell.className=stil;
	}
