
var swis = {
  src: '/sifr3/swis-721-cn-bt.swf'
};

sIFR.activate(swis);

/*
- 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(swis, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#000000; font-weight:bold; leading: -3; }'
]
.wmode:’transparent’
});

sIFR.replace(swis, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#be4100; font-weight:bold; leading: -5; }'
]
.wmode:’transparent’
});

sIFR.replace(swis, {
selector: 'h3'
,css: [
  '.sIFR-root { color:#767D80; font-weight:bold; leading: -5; }'
]
.wmode:’transparent’
});

sIFR.replace(swis, {
selector: '.home-title'
,css: [
  '.sIFR-root { color:#333333; font-weight:bold; leading: 2; }'
]
.wmode:’transparent’
});