// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var crimfbb = {
      src: BASE__URL + 'flash/crimfbb_ce.swf'      
    };


// Next, activate sIFR:
sIFR.activate(crimfbb);

// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.
sIFR.replace(crimfbb, {
  selector: '.section-title',
  css: '.sIFR-root { color: #0e9324; font-size: 14px; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.about .section-title-big',
  css: '.sIFR-root { color: #474747; font-size: 18px; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.section-title-big',
  css: '.sIFR-root { color: #0e9324; font-size: 24px; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.news-wrapper .item .news-title',
  css: 'a { color: #0e9324; font-size: 18px; text-decoration:none; } a:hover { color: #0e9324; font-size: 18px; text-decoration:none; }',
  wmode: 'transparent'
});


sIFR.replace(crimfbb, {
  selector: '.sidebar-box .sub-menu li div',
  css: 'a { color: #5B584F; font-size: 11px; cursor: pointer; text-decoration: none; } a:hover { color: #00782F; font-size: 11px; cursor: pointer; text-decoration: none; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.sidebar-box .submenu-title ',
  css: 'a { color: #0e9324; font-size: 14px; width: 180px; text-decoration: none; } a:hover { color: #00782F; font-size: 14px; width: 180px; text-decoration: underline; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.section-sub',
  css: '.sIFR-root { color: #423F37; font-size: 14px; }',
  wmode: 'transparent'
});

sIFR.replace(crimfbb, {
  selector: '.sub-main h2',
  css: '.sIFR-root { color: #423F37; font-size: 14px; }',
  wmode: 'transparent'
});


