var AvantGarde = { src: 'flash/AvantGarde.swf' };

sIFR.activate(AvantGarde);

// 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);
//

// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// 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(AvantGarde, {
  selector: 'h1',
  css: '.sIFR-root { font color: #485D28; font-weight:normal; }',
  wmode: 'transparent'
});

sIFR.replace(AvantGarde, {
  selector: '#mailinglist h2',
  css: '.sIFR-root { font color: #333333; font-weight:bold; }',
  wmode: 'transparent'
});
