
var lucida = {
  src: 'http://islandtimberlands.gssiwebs.com/sifr3/lucida-sans.swf'
};

sIFR.prefetch(lucida);

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(lucida, {
selector: '#content h1'
,css: [
  '.sIFR-root { color:#0054a7; font-weight: normal; leading: -3; letter-spacing: 0.1; font-size:25; }'
]
});

sIFR.replace(lucida, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#38393b; font-weight: normal; leading: -3; letter-spacing: 0.1; }'
]
});

sIFR.replace(lucida, {
selector: 'h2'
,css: [
  '.sIFR-root { color:#0054a7; font-weight: normal; leading: -3; letter-spacing: 0.1; }'
]
});


