
var helv = {
  src: '/sifr3/helvetica-45-light.swf'
};

sIFR.prefetch(helv);

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(helv, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#3a9401; font-weight:bold; leading: -3; }'
]
});

sIFR.replace(helv, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#bd9d04; font-weight:bold; leading: -3; }'
]
});

sIFR.replace(helv, {
selector: 'h3'
,css: [
  '.sIFR-root { color:#bd9d04; font-weight:bold; leading: -3; }'
]
});

sIFR.replace(helv, {
selector: '.menu-title'
,css: [
  '.sIFR-root { color:#3a9401; font-weight:bold; leading: -3; }'
]
});

sIFR.replace(helv, {
selector: '.home-title'
,css: [
  '.sIFR-root { color:#3a9401; font-weight:bold; leading: -3; }'
]
});
