var Tiranti = { src: '/inc/sIFR/Tiranti.swf' };
var TektonPro = { src: '/inc/sIFR/TektonPro.swf' };

sIFR.useStyleCheck = true;

sIFR.activate(Tiranti, TektonPro);

// If you want, you can use multiple movies, like so:
//
//    var futura = { src: '/path/to/futura.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    var rockwell = { src: '/path/to/rockwell.swf' };
//    
//    sIFR.activate(futura, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!

// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.

sIFR.replace(Tiranti, {
  selector: '#col1_content h2', 
  wmode: 'transparent',
  css: [ '.sIFR-root { background-color:#000; color:#689249; }' ]
});

sIFR.replace(TektonPro, {
  selector: '#col1_content h4',
    wmode: 'transparent',
  css: [ '.sIFR-root { background-color:#000; color:#689249; }' ]
});







