 

function setcurrentmenucolor(id) {
	
	if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(id).style.backgroundColor = '#fdb666' ;
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.bgColor = '#fdb666';  
		}
		else { // IE 4
			document.all.id.style.backgroundColor = '#fdb666' ;
		}
	}
} // end setcurrentmenucolor

 