  var airfoil = {
    src: 'airfoil.swf'
  };
  var atelier = {
    src: 'atelier.swf'
  };
  var angelina = {
    src: 'angelina.swf'
  };

  // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
 sIFR.useStyleCheck = true;
  sIFR.activate(angelina, airfoil, atelier);

  sIFR.replace(airfoil, {
    selector: 'h1'
    ,css: [
      '.sIFR-root { text-align: center; font-weight: bold; }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #12D9D9; }'
    ]
   ,wmode: 'transparent' 
 });
  
  sIFR.replace(airfoil, {
    selector: 'h5'
    ,css: 'em { font-style: normal; color: #000000; }'
    ,selectable: false
   ,wmode: 'transparent' 
 });
  
   
   sIFR.replace(airfoil, {
    selector: 'h2,h3'
    ,css: {
      '.sIFR-root': { 'color': '#000000' }
    }
  ,wmode: 'transparent' 
 });
 
  sIFR.replace(airfoil, {
    selector: 'h4'
    ,css: {
      '.sIFR-root': { 'color': '#000000', 'letter-spacing': -1.5, 'text-transform': 'capitalize' }
    }
    ,filters: {
      DropShadow: {
        knockout: true
        ,distance: 1
        ,color: '#cccccc'
        ,strength: 2
      }
    }
  });

