/*****************************************************************************
You must load this file *after* loading `sifr.js`.
*****************************************************************************/

// Make an object pointing to the location of the Flash movie on your web server.
var BankGothic = { src: '../flash/BankGothicCE.swf'};
var BradleyHand = { src: '../flash/BradleyHandITC.swf'};

// Now you can set some configuration settings.
// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(BankGothic,BradleyHand);

// Now we can do the replacements. You can do as many as you like, but just

//no effects
sIFR.replace(BradleyHand, {
  selector: 'h1'
  ,css: {
  	'.sIFR-root': { 'text-align': 'center' }
  }
  ,wmode: 'transparent'
});

sIFR.replace(BradleyHand, {
  selector: 'h2'
  ,css: {
  	'.sIFR-root': { 'color': '#ED1C24' }
  }
  ,wmode: 'transparent'
});

sIFR.replace(BradleyHand, {
  selector: 'h3'
  ,css: {
  	'.sIFR-root': { 'text-align': 'center', 'color': '#ED1C24' }
  }
  ,wmode: 'transparent'
});

sIFR.replace(BradleyHand, {
  selector: 'h4'
  ,wmode: 'transparent'
});

sIFR.replace(BankGothic, {
  selector: 'h5'
  ,css: {
  	'.sIFR-root': { 'text-align': 'center' }
  }
  ,wmode: 'transparent'
});