var alliance = {
    src: 'flash/alliance.swf'
};

var times = {
    src: 'flash/times_new_roman_italic.swf'
};

sIFR.fromLocal = true;

sIFR.prefetch(alliance, times);
sIFR.activate(alliance, times);
  
sIFR.replace(alliance, {
	selector: 'h2.articleTitle'
	,wmode: 'transparent'
	,css: {
		'.sIFR-root': {'font-size': '40px', 'color': '#803e2e', 'text-align': 'center'}
    }
});
  
  
sIFR.replace(times, {
	selector: 'h3.editorTitle',
	wmode: 'transparent',
	css: {
		'.sIFR-root': {'font-size': '15px', 'color': '#803e2e', 'text-align': 'center', 'font-weight': 'bold', 'font-style': 'italic'}
	}
});

sIFR.replace(alliance, {
	selector: '#footer_XX p',
	wmode: 'transparent',
	css: {
		'.sIFR-root': {'font-size': '11px', 'color': '#867360', 'text-align': 'center'}
	}
});

/*
  var cochin = {
    src: 'fonts/cochin.swf'
   };

  var rockwell = {
    src: 'fonts/rockwell.swf'
   };

sIFR.fromLocal = true;

  sIFR.delayCSS  = true;
  // sIFR.domains = ['novemberborn.net'] // Don't check for domains in this demo
  sIFR.activate(cochin, rockwell);
  
  sIFR.replace(rockwell, {
    selector: 'h2.articletitle'
    ,css: [
      '.sIFR-root { text-align: center; font-weight: bold; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #CCCCCC; }'
    ]
  });
  
  sIFR.replace(rockwell, {
    selector: 'h5#pullquote'
    ,css: 'em { font-style: normal; color: #660000; }'
  });
  
  sIFR.replace(cochin, {
    selector: 'h3.editortitle'
    ,css: {
      '.sIFR-root': { 'background-color': '#DCDCDC' }
    }
  });
  
  sIFR.replace(cochin, {selector: 'h2,h3'});
  
  sIFR.replace(cochin, {
    selector: 'h4.subhead'
    ,css: {
      '.sIFR-root': { 'color': '#660000', 'letter-spacing': -1.5, 'text-transform': 'capitalize' }
    }
    ,filters: {
      DropShadow: {
        knockout: true
        ,distance: 1
        ,color: '#330000'
        ,strength: 2
      }
    }
  });*/