var myriad = { src: 'fx/myriad.swf' };
var myriad2 = { src: 'fx/myriadLight.swf' };

sIFR.activate(myriad, myriad2);

// 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()`!

sIFR.preserveSingleWhitespace = true;

sIFR.replace(myriad, {

  selector: 'h1',

  css: ['.sIFR-root { background-color: #fbffd3; color: #a5b800; font-size: 31px; line-height: 1em; }',
  		'a { text-decoration: none; font-size: 31px;}',
        'a:link { color: #a5b800; }',
        'a:hover { color: #a5b800; }'],
        
  tuneHeight: '6',
  
  offsetTop: '7',
  
  wmode: 'transparent'

});

sIFR.replace(myriad, {

  selector: 'h2.purple',

  css: ['.sIFR-root { background-color: #fbffd3; color: #67003a; font-size: 20px; line-height: 1em; }',
  		'a { text-decoration: none; font-size: 20px;}',
        'a:link { color: #67003a; }',
        'a:hover { color: #67003a; }'],
        
  tuneHeight: '4',
  
  offsetTop: '5',
  
  wmode: 'transparent'

});

sIFR.replace(myriad2, {

  selector: 'h2',

  css: ['.sIFR-root { background-color: #fbffd3; color: #a5b800; font-size: 14px; line-height: 1em; }',
  		'a { text-decoration: none; font-size: 14px;}',
        'a:link { color: #a5b800; }',
        'a:hover { color: #a5b800; }'],
        
  /*tuneHeight: '-10',
  
  offsetTop: '-3',*/
  
  wmode: 'transparent'

});

sIFR.replace(myriad, {

  selector: 'h3.purple',

  css: ['.sIFR-root { background-color: #ffffff; color: #67003a; font-size: 20px; line-height: 1em;',
  		'a { text-decoration: none; font-size: 20px;}',
        'a:link { color: #67003a; }',
        'a:hover { color: #67003a; }'],
        
  tuneHeight: '4',
  
  offsetTop: '5',
  
  wmode: 'transparent'

});

sIFR.replace(myriad, {

  selector: 'h3',

  css: ['.sIFR-root { background-color: #ffffff; color: #a5b800; font-size: 20px; line-height: 1em;',
  		'a { text-decoration: none; font-size: 20px;}',
        'a:link { color: #a5b800; }',
        'a:hover { color: #a5b800; }'],
        
  tuneHeight: '4',
  
  offsetTop: '5',
  
  wmode: 'transparent'

});


