problem jquery ui tabs

problem jquery ui tabs


ok so heres the deal i have two different html files using the same
ui.tabs.js file and one works fine. the other how ever im getting a
few errors on the 2nd page in firebug:
missing ; before statement
[Break on this error] hideFx = o.fx[0] ||Â baseFx, showFx = o.fx[1] ||
 baseFx;\n
which in turn makes .tabs not be a function but the exact same code
everything works?
the snippet from the ui.tabs.js is:
var hideFx, showFx, baseFx = { 'min-width': 0, duration: 1 },
baseDuration = 'normal';
if (o.fx && o.fx.constructor == Array)
hideFx = o.fx[0] ||Â baseFx, showFx = o.fx[1] ||Â
baseFx;
else
hideFx = showFx = o.fx ||Â baseFx;
any ideas?