  
    var font1 = {
      src: 'fileadmin/SITE/sifr/sifr_mbi.swf'
    };
    var font2 = {
      src: 'fileadmin/SITE/sifr/sifr_m.swf'
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(font1);
    sIFR.activate(font2);

	sIFR.replace(font2, { 
	  selector: 'h1', 
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '36px', 'color' : '#05433E' }
		  }
	  });

	sIFR.replace(font2, { 
	  selector: 'h2', 
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '22px', 'color' : '#05433E' }, 
		  'strong': { 'font-family' : 'MyriadPro-Bold', 'font-weight' : 'plain' },
		  'em': { 'font-family' : 'MyriadPro-It', 'font-style': 'normal' },
		  'a': { 'text-decoration' : 'none' },
		  'a:link': { 'color' : '#05433E' },
		  'a:hover': { 'color' : '#000000' }
		  }
	  });



