var helvetica = { src: RESOURCES_PATH + '/flash/fonts/HelveticaNeueLTPro_Condensed.swf' };

sIFR.activate(helvetica);

sIFR.replace(helvetica, {
  selector: '#mainNavigation a.sifrize',
  wmode: 'transparent',
  css: '.sIFR-root { cursor: pointer; }',
  modifyContentString: function (s) { return s.toUpperCase() + ' '; }
  ,preventWrap: true
  ,forceWidth: true
  ,fitExactly: true
  ,forceSingleLine: true
  ,onRelease: function (fi) {
      var $a = $(fi.getAlternate()).parents('a').eq(0);
      window.location = $a.attr('href');
  }
});

