function LoadSifr()
{
// setting up the flash font files used //
var Frutiger65Bold = {
  src: '/Flash/Frutiger65Bold.swf'
};

// CSS Variables to apply to font //
var csshdrBlueH1 = {
  '.sIFR-root': { 'color': '#145386'}
  }

  var csshdrOrangeH4 = {
  '.sIFR-root': { 'color': '#E3770A'}
  }

// activating flash font files //
sIFR.useDomContentLoaded = false;
sIFR.activate(Frutiger65Bold);

// setting up replacement classes //
sIFR.replace(Frutiger65Bold, {
  selector: 'h1'
  ,css: [ 
      '.sIFR-root { color: #145386;}' 
      ,'a:link { color: #145386; text-decoration: none;}' 
      ,'a:visited { color: #145386; text-decoration: none; }'
      ,'a:hover { color: #145386; text-decoration: none;}']
  ,wmode: 'transparent'
});

sIFR.replace(Frutiger65Bold, {
  selector: 'h2'
   ,css: [ 
      '.sIFR-root { color: #145386;}' 
      ,'a:link { color: #145386; text-decoration: none;}' 
      ,'a:visited { color: #145386; text-decoration: none; }'
      ,'a:hover { color: #145386; text-decoration: none;}'
      ,'.orange { color: #E3770A;}']
  ,wmode: 'transparent'
});

sIFR.replace(Frutiger65Bold, {
  selector: 'h3'
  ,css: csshdrBlueH1
  ,wmode: 'transparent'
});

sIFR.replace(Frutiger65Bold, {
  selector: 'h4'
  ,css: csshdrOrangeH4
  ,wmode: 'transparent'
});

}