
var myriad = {
  src: '/sifr4/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:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});


sIFR.replace(myriad, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

sIFR.replace(myriad, {
selector: 'h3'
,css: [
  '.sIFR-root { color:#000; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

sIFR.replace(myriad, {
selector: 'h4'
,css: [
  '.sIFR-root { color:#231f20; font-weight: normal; leading: -3; letter-spacing: 0.1; text-transform:uppercase; }'
]
});

sIFR.replace(myriad, {
selector: 'h5'
,css: [
  '.sIFR-root { color:#140f55; font-weight: normal; leading: -3; letter-spacing: 0.1; text-transform:uppercase; }'
]
});

sIFR.replace(myriad, {
selector: 'h6'
,css: [
  '.sIFR-root { color:#b60e2a; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});

