  
    var font1 = {
      src: 'fileadmin/SITE/sifr/lachner-regular.swf'
    };

    var font2 = {
      src: 'fileadmin/SITE/sifr/lachner-medium.swf'
    };

    var font3 = {
      src: 'fileadmin/SITE/sifr/lachner-bold.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.activate(font3);

	sIFR.replace(font1, { 
	  selector: 'h1', 
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '24px', 'color' : '#EA5600' }
		  }
	  });

	sIFR.replace(font1, { 
	  selector: 'h2', 
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '20px', 'color' : '#EA5600' },
		  'a': { 'text-decoration' : 'none' },
		  'a:link': { 'color' : '#EA5600' },
		  'a:hover': { 'color' : '#666666' }
		  }
	  });

	sIFR.replace(font1, { 
	  selector: 'h3', 
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '16px', 'color' : '#EA5600' },
		  'a': { 'text-decoration' : 'none' },
		  'a:link': { 'color' : '#EA5600' },
		  'a:hover': { 'color' : '#666666' }
		  }
	  });

	sIFR.replace(font2, { 
	  selector: '#subcontentContainer h3',
	  wmode: 'transparent',
	  css: {
		  '.sIFR-root': { 'font-size' : '16px', 'color' : '#FFC680' }
		  }
	  });


