// When true the dimensions of the Flash movie will fit exactly around the width and height of the text in the movie. 
// *Note:* this is as reported by Flash, so you might need to manually tune the dimensions.
//sIFR.fitExactly = true;
//sIFR.tuneWidth = 100;

// Allow sIFR to run when loaded from the localhost domain. 
//You don't have to add localhost to the domains. 
//sIFR.fromLocal = true;

// Specifies the window mode of the Flash movie. 
// When transparent the movie will be transparent. 
// When opaque elements can be displayed on top of the movie. 
// If transparency is not supported wmode will be set to opaque and the background color specified in the CSS will be used. 
// Therefore, it is important to always specify a background color!
sIFR.Wmode = "transparent";

var liliecaps = {
  src: 'http://manularcenet.com/blog/wp-content/themes/larcenet-V2/liliecaps.swf'
};


sIFR.activate(liliecaps); // From revision 209 and onwards


sIFR.replace(liliecaps, {
  selector: 'h2'
  ,css: [
      '.sIFR-root { text-align: center;  }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #C35935; }'
    ], wmode: 'transparent'
	
});


/*sIFR.debug.ratios({ src: 'liliecaps.swf', selector: 'h2.titreg' });*/

sIFR.replace(liliecaps, {
    selector: 'h3.datePost'
    ,css: [ '.sIFR-root { text-align: center;  }'
	,'em { font-style: normal; color: #000000; }'
    ],selectable: false
	, wmode: 'transparent'
  });
  
  sIFR.replace(liliecaps, {
  selector: '.menu li'
  ,css: [
      '.sIFR-root { text-align: center;  }'
      ,'a { text-decoration: none; }'
      ,'a:link { color: #000000; }'
      ,'a:hover { color: #C35935; }'
    ], wmode: 'transparent'
});


