  var frankfurter = {
	src: 'flash/frankfurter.swf'
  };
  
  /// ratio calculatings:
  // http://wiki.novemberborn.net/sifr3/Ratio+Calculation
  

  // sIFR.domains = ['novemberborn.net'] // Don't check for domains in this demo
  sIFR.useStyleCheck = true;
  sIFR.activate(frankfurter);

  
  /* h1 styles */  
  sIFR.replace(frankfurter, {
    selector: 'h1'
    ,css: [
      '.sIFR-root { color:#ec008c; text-align: left; font-weight: normal; font-size: 15px; }'
    ], wmode: ['transparent']
  });
    
	
  /* h2 styles */	
  sIFR.replace(frankfurter, {
    selector: 'h2.non-active'
    ,css: [
      '.sIFR-root { color:#91278f; text-align: left; font-weight: normal; font-size: 15px;}'
    ], wmode: ['transparent']
  });
  
  sIFR.replace(frankfurter, {
    selector: 'h2'
    ,css: [
      '.sIFR-root { color:#2e3192; text-align: left; font-weight: normal; font-size: 15px;}'
    ], wmode: ['transparent']
  });  
  

  /* navigation styles */	
  sIFR.replace(frankfurter, {
    selector: 'div#leftCon div#navigationCon ul li.active, div#rightCon div#subNavigationCon ul li.active'
    ,css: [
      '.sIFR-root { color:#ec008c; font-size: 15px; }',
	  'a { color:#ec008c; text-decoration: none;}',
	  'a:link { color:#ec008c; text-decoration: none; }',
	  'a:visited { color:#ec008c; text-decoration: none; }',
	  'a:hover { color:#ec008c; text-decoration: none; }'
    ], wmode: ['transparent']
  });
  
  sIFR.replace(frankfurter, {
    selector: 'div#leftCon div#navigationCon ul li, div#rightCon div#subNavigationCon ul li'
    ,css: [
      '.sIFR-root { color:#91278f; font-size: 15px; }',
	  'a { color:#91278f; text-decoration: none;}',
	  'a:link { color:#91278f; text-decoration: none; }',
	  'a:visited { color:#91278f; text-decoration: none; }',
	  'a:hover { color:#ec008c; text-decoration: none; }'
    ], wmode: ['transparent']
  });