var myriad = {
  src: '/commerce.web/sifr3/myriad.swf'
};

sIFR.prefetch(myriad);

sIFR.activate();

/*
- leading: similar to line-height in CSS
- Don't type "px" after the values for leading & letter-spacing!!
- Have to include bold/italic fonts in Flash file otherwise bold/italic won't show up.
*/

sIFR.replace(myriad, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#0f4b78; font-weight: bold; font-size: 20px; leading: -3; background-color:#d2d2c8; text-decoration:none;}'
]
});

sIFR.replace(myriad, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#008cd0; font-style: italic; letter-spacing: 0.5}'
]
});

