
var din = {
  src: '/sifr3/din-engschrift.swf'
};

sIFR.prefetch(din);

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(din, {
selector: 'h1'
,wmode: 'transparent'
,css: [
  '.sIFR-root { color:#007c82; font-weight: normal; leading: -3; letter-spacing: 0.1;}'
]
});


sIFR.replace(din, {
selector: '.menu-title'
,wmode: 'transparent'
,css: [
  '.sIFR-root { color:#000; font-weight: normal; leading: -3; letter-spacing: 0.5; text-transform:uppercase; }'
]
});

