
// fonts we're using

var cooper = {
   src: '/assets/swf/cooperBlack.swf',
   selectable: true
 };
 
var only = {
    src: '/assets/swf/onlyWhenIDoFonts.swf',
    selectable: true
}
 


//activate them

sIFR.activate(only);
sIFR.activate(cooper);


//target elements to replace



sIFR.replace(cooper, {
   selector: '.redTitle'
   ,css: [
     '.sIFR-root { color: #ff0000; leading: -3}'
     
   ],
   wmode: 'transparent'
});


sIFR.replace(only, {
   selector: '#homeList li'
   ,css: [
     '.sIFR-root { color: #b4006f;}',
     ,'a { text-decoration: underline; color: #b4006f; }'
     ,'a:hover { text-decoration: underline; color: #ff0000; }'
     
   ],
   wmode: 'transparent'
});

sIFR.replace(only, {
   selector: '#barList'
   ,css: [
     '.sIFR-root { color: #b4006f; leading: 6}',
     ,'a { text-decoration: underline; color: #b4006f; }'
     ,'a:hover { text-decoration: underline; color: #ff0000; }'
     
   ],
   wmode: 'transparent'
});