function togleSubMenuColor( id, color ) {
	var i = document.getElementById( id );
	i.style.backgroundColor = "#" + color;
	return false;
}
