  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:#ed1c24; text-align: left; font-weight: normal; font-size: 15px; }'
    ], wmode: ['transparent']
  });
    
	
  /* h2 styles */	
  sIFR.replace(frankfurter, {
    selector: 'h2.non-active'
    ,css: [
      '.sIFR-root { color:#ed1c24; text-align: left; font-weight: normal; font-size: 15px;}'
    ], wmode: ['transparent']
  });  
  
  sIFR.replace(frankfurter, {
    selector: 'h2'
    ,css: [
      '.sIFR-root { color:#ed1c24; 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:#f26522; font-size: 15px; }',
	  'a { color:#f26522; text-decoration: none;}',
	  'a:link { color:#f26522; text-decoration: none; }',
	  'a:visited { color:#f26522; text-decoration: none; }',
	  'a:hover { color:#f26522; 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:#ffc20e; font-size: 15px; }',
	  'a { color:#ffc20e; text-decoration: none;}',
	  'a:link { color:#ffc20e; text-decoration: none; }',
	  'a:visited { color:#ffc20e; text-decoration: none; }',
	  'a:hover { color:#f26522; text-decoration: none; }'
    ], wmode: ['transparent']
  });