
var myriad = {
  src: 'http://www.jpautogroup.com/sifr3/myriad.swf'
};

sIFR.activate(myriad);

/*
- 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:#6e6e6e; font-weight: normal; leading: -3; letter-spacing: 0.5; }'
]
.wmode:’transparent’
});


sIFR.replace(myriad, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#c80000; font-weight: normal; leading: -3; letter-spacing: 0.8}'
]
.wmode:’transparent’
});

sIFR.replace(myriad, {
selector: 'h3'
,css: [
  '.sIFR-root { color:#bc0b0b; font-weight: normal; leading: -3; letter-spacing: 0.5}'
]
.wmode:’transparent’
});

sIFR.replace(myriad, {
selector: 'h4'
,css: [
  '.sIFR-root { color:#003cc8; font-weight: normal; leading: -3; letter-spacing: 0.5}'
]
.wmode:’transparent’
});
