
var futura = {
  src: '/sifr3/futuraMdBT.swf'
};

//sIFR.prefetch(futura);

sIFR.activate(futura);

/*
- 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(futura, {
selector: 'h1'
,css: [
  '.sIFR-root { color:#ff1400; font-weight: normal; leading: -3; letter-spacing: 0.1; }'
],wmode:'transparent'
});

sIFR.replace(futura, {
selector: '.numbers'
,css: [
  '.sIFR-root { color:#ff1400; font-weight: normal; leading: -3; letter-spacing: 0.1; }'
],wmode:'transparent'
});

sIFR.replace(futura, {
selector: '.blogtitle'
,css: [
  '.sIFR-root { color:#7f7f7f; font-weight: normal; leading: -3; letter-spacing: 0.1; text-transform:uppercase;}'
],wmode:'transparent'
});

sIFR.replace(futura, {
selector: '.menu-heading'
,css: [
  '.sIFR-root { color:#003c96; font-weight: normal; leading: -3; letter-spacing: 0.5;}'
],wmode:'transparent'
});

sIFR.replace(futura, {
selector: '.home-title'
,css: [
  '.sIFR-root { color:#003c96; font-weight: normal; leading: -3; letter-spacing: 0.5; text-transform:uppercase; }'
],wmode:'transparent'
});

