function changeColor(textColor, bgColor, objnr) {
    objTd=document.getElementById('menuTd'+objnr);
    if(objTd) {
	objTd.style.backgroundColor=bgColor;
	objTd.style.color=textColor;
    }
    
    objLink=document.getElementById('menuLink'+objnr);
    if(objLink) {
        objLink.style.color=textColor;    
	/*
	if(objnr==5) {
	    objLink=document.getElementById('menuLink6');
	    objLink.style.color=textColor;    
	}
	*/
    }
}
