function menuLight(x, kind)
	{
		var dark = "#3c260a";
		var light = "#3f4f60";  //734e22
		var t;
		if(kind == "out")
			t = dark;
		else
			t = light;
		
		dojo.animateProperty({
			node: x, duration: 500,
			properties: { backgroundColor: t},
		}).play();
	}
