// Define which swf file is being used
var cairo = {
  src: '/sifr/flash/cairo.swf'
};

// Activate the font
sIFR.activate(cairo);

// Replace an elements text
sIFR.replace(cairo, {
  selector: 'h2.section-header',
  fitExactly: true,
  tuneHeight: -7,
  wmode: 'transparent',
  css: ['.sIFR-root { color: #723c2f;, height: 32px; }']
});

// Replace an elements text (orange version)
sIFR.replace(cairo, {
  selector: 'h2.section-header-orange',
  fitExactly: true,
  tuneHeight: -7,
  wmode: 'transparent',
  css: ['.sIFR-root { color: #ffb848;, height: 32px; }']
});

