var GothamBook   = { src: rootFolder + '/fonts/GothamBook.swf' };
var GothamMedium = { src: rootFolder + '/fonts/GothamMedium.swf' };
var GothamBold   = { src: rootFolder + '/fonts/GothamBold.swf' };

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(GothamBook, GothamMedium, GothamBold);

sIFR.replace(GothamBook, {
  selector: '.indexIntro h1',
  css: '.sIFR-root { color: #2c2c2c; font-size: 28px; letter-spacing: -0.5; }',
	transparent: true
});
sIFR.replace(GothamMedium, {
  selector: '.indexIntro h2',
  css: '.sIFR-root { color: #2c2c2c; font-size: 14px; letter-spacing: -0.5; }',
	transparent: true
});
sIFR.replace(GothamMedium, {
  selector: '.indexSection h3',
  css: '.sIFR-root { color: #ffffff; font-size: 14px; }, a { color: #ffffff; font-size: 14px; text-decoration: none; }, a:hover { color: #f2f2ff; font-size: 14px; text-decoration: none; }',
	transparent: true
});
sIFR.replace(GothamBold, {
  selector: '.vitalGasLocator label',
  css: '.sIFR-root { color: #ffffff; font-size: 11px; text-transform: uppercase; }',
	transparent: true
});
sIFR.replace(GothamBook, {
  selector: '.sidebarHeading',
  css: '.sIFR-root { color: #ffffff; font-size: 18px; }',
	transparent: true
});
sIFR.replace(GothamBook, {
  selector: '.pageIntro',
  css: '.sIFR-root { color: #396b93; font-size: 18px; letter-spacing: -0.25; }',
	transparent: true
});
