Hello,
For some reason the menu i'm working on isn't aligning correctly on macs (I've tested IE and Safari on Mac on 2 different computers) it seems like the font is bolder or something so it bleeds out of it's area.
Just wanted to let everyone know that I got it.
It was a problem with mac displaying font sizes differently.
WHat I did was edit the menu_data.js script with the following:
Replace the standard
fontsize="xxx";
with
if (navigator.appVersion.indexOf("Mac")!=-1) {fontsize="xxx";}
else {fontsize="xxx";}