// When true the dimensions of the Flash movie will fit exactly around the width and height of the text in the movie. 
// *Note:* this is as reported by Flash, so you might need to manually tune the dimensions.
sIFR.fitExactly = true;
//sIFR.tuneWidth = 100;

// Allow sIFR to run when loaded from the localhost domain. 
//You don't have to add localhost to the domains. 
//sIFR.fromLocal = true;

// Specifies the window mode of the Flash movie. 
// When transparent the movie will be transparent. 
// When opaque elements can be displayed on top of the movie. 

  var blackmoor = {
    src: 'graphics/sifr/blackmoor.swf'
  };

  sIFR.activate(blackmoor);

  sIFR.replace(blackmoor, {
    selector: 'h1',
    css: ['.sIFR-root { text-align: left; font-size: 32px; color: #afb57e }'],
    wmode: 'transparent'
  });