
// Hier laadt je het font in die gebruikt wordt voor h1 en h2 tags. 
// Deze declaratie opnieuw doen als je een ander font wilt inladen, zie h3.
var centurygothic = {
src: '/site/sIFR/fonts/Century_Gothic.swf'
};

sIFR.prefetch(centurygothic);

/*sIFR.activate();
sIFR.replace(centurygothic, {
selector: 'h1'
,css: [
'.sIFR-root { color: #8dc63f; }'
,'a {color: #cc3333; text-decoration: none; }'
,'a:visited { color: #cc3333; text-decoration: none; }'
,'a:hover { color: #cc3333; text-decoration: none; }'
],
wmode: 'transparent'
});*/

sIFR.activate();
sIFR.replace(centurygothic, {
selector: 'h2'
,css: [
'.sIFR-root { color: #FE0000;}'
,'a {color: #cc3333; text-decoration: none; }'
,'a:visited { color: #cc3333; text-decoration: none; }'
,'a:hover { color: #cc3333; text-decoration: none; }'
],
wmode: 'transparent',
filters: {
        DropShadow: {
          knockout: false
          ,distance: 1
          ,color: '#FF4848'
          ,strength: 1
        }
}
});

var TwCenMT = {
src: '/site/sIFR/fonts/TwCenMT.swf'
};

sIFR.prefetch(TwCenMT);

sIFR.activate();
sIFR.replace(TwCenMT, {
selector: 'h3'
,css: [
'.sIFR-root { color: #000000; }'
,'a {color: #cc3333; text-decoration: none; }'
,'a:visited { color: #cc3333; text-decoration: none; }'
,'a:hover { color: #75009E; text-decoration: none; }'
],
wmode: 'transparent'
});


