hardcode some resources, removing annoying Widgets.rsrc dependency
diff --git a/Mac/Tools/IDE/Wmenus.py b/Mac/Tools/IDE/Wmenus.py
index 4d65e90..02e6e5d 100644
--- a/Mac/Tools/IDE/Wmenus.py
+++ b/Mac/Tools/IDE/Wmenus.py
@@ -1,11 +1,18 @@
 import FrameWork
 import Wbase, Wcontrols
-from Carbon import Ctl, Controls, Qd
+from Carbon import Ctl, Controls, Qd, Res
 from types import *
 import Wapplication
 
-_arrowright = Qd.GetPicture(472)
-_arrowdown = Qd.GetPicture(473)
+#_arrowright = Qd.GetPicture(472)
+#_arrowdown = Qd.GetPicture(473)
+
+_arrowright = Res.Resource(
+	'\x00I\x00\x00\x00\x00\x00\n\x00\n\x11\x01\x01\x00\n\x00\x00\x00'
+	'\x00\x00\n\x00\n\x90\x00\x02\x00\x00\x00\x00\x00\n\x00\n\x00\x00'
+	'\x00\x00\x00\n\x00\n\x00\x00\x00\x00\x00\n\x00\n\x00\x00\x10\x00'
+	'\x18\x00\x1c\x00\x1e\x00\x1f\x00\x1f\x00\x1e\x00\x1c\x00\x18\x00'
+	'\x10\x00\xff')
 
 
 class PopupControl(Wcontrols.ControlWidget):