/*****************************************************************************
You must load this file *after* loading `sifr.js`.
*****************************************************************************/
var myriadpro = { src: 'http://www.maasco.com/new/js/myriadpro.swf' };
sIFR.activate(myriadpro);

// 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 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(myriadpro, {
  selector: '.content h1',
css:['.sIFR-root {color: #455560;}',
'.sIFR-root a { color: #455560; text-decoration: none; }',
'.sIFR-root a:hover { color: #455560; text-decoration: none; }',
'.sIFR-root a:visited { color: #455560; text-decoration: none; }']
  , wmode: 'transparent'
  , fixfocus: true
  , tuneHeight: 0
});

sIFR.replace(myriadpro, {
  selector: 'h1.homeh1',
css:['.sIFR-root { color: #ffffff; }',
'.sIFR-root a { color: #ffffff; text-decoration: none; }',
'.sIFR-root a:hover { color: #ffffff; text-decoration: none; }',
'.sIFR-root a:visited { color: #ffffff; text-decoration: none; }']
  , wmode: 'transparent'
  , fixfocus: true
  , tuneHeight: 0
});

sIFR.replace(myriadpro, {
  selector: 'p.tag1',
css:['.sIFR-root { color: #017cbe; }',
'.sIFR-root a { color: #017cbe; }',
'.sIFR-root a:hover { color: #017cbe; }',
'.sIFR-root a:visited { color: #017cbe; }']
  , wmode: 'transparent'
  , fixfocus: true
  , fitExactly: true
});
