var gotham = {  
  src: 'wp-content/themes/simplicitybright/flash/sifr.swf'  
};
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(gotham);

// If you want, you can use multiple movies, like so:
//
//    var futura = { src: '/path/to/futura.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    
//    sIFR.activate(futura, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!


sIFR.replace(gotham, {  
  selector: 'h1'  
  ,css: [  
       'a { color: #ff4800; }'  
      ,'a:link { color: #ff4800; text-decoration: none; }'  
      ,'a:hover { color: #000000; text-decoration: none; }' 


  ]  
});  


sIFR.replace(gotham, {  
  selector: '#sidebar h2'  
  ,css: [  
       'a { color: #7f7f7f; }'  
      ,'a:link { color: #7f7f7f; text-decoration: none; }'  
      ,'a:hover { color: #7f7f7f; text-decoration: none; }' 


  ]  
});  