  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:#2e3192; text-align: left; font-weight: normal; font-size: 15px; }'
    ], wmode: ['transparent']
  });
    
	
  /* h2 styles */	
  sIFR.replace(frankfurter, {
    selector: 'h2.non-active'
    ,css: [
      '.sIFR-root { color:#0071bc; 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, div#rightCon div#ProductlineCon ul li.active'
    ,css: [
      '.sIFR-root { color:#00aeef; font-size: 15px; }',
	  'a { color:#00aeef; text-decoration: none;}',
	  'a:link { color:#00aeef; text-decoration: none; }',
	  'a:visited { color:#00aeef; text-decoration: none; }',
	  'a:hover { color:#00aeef; text-decoration: none; }'
    ], wmode: ['transparent']
  });
  
  sIFR.replace(frankfurter, {
    selector: 'div#leftCon div#navigationCon ul li, div#rightCon div#subNavigationCon ul li, div#rightCon div#ProductlineCon ul li'
    ,css: [
      '.sIFR-root { color:#0071bc; font-size: 15px; }',
	  'a { color:#0071bc; text-decoration: none;}',
	  'a:link { color:#0071bc; text-decoration: none; }',
	  'a:visited { color:#0071bc; text-decoration: none; }',
	  'a:hover { color:#00aeef; text-decoration: none; }'
    ], wmode: ['transparent']
  });