// JavaScript Document
    var myfont = {
      src: '/papyrus.swf'
       };

sIFR.activate(myfont);

sIFR.replace(myfont, {
      selector: 'h1',css: {
        '.sIFR-root': { 'color': '#ffffff', 'text-align':'center' }
      },
      wmode: 'transparent',
	  transparent: true 
      ,filters: {
        DropShadow: {
          knockout: false
          ,distance: 1
          ,color: '#000000'
          ,strength: 1
        }
      }

});

sIFR.replace(myfont, {
      selector: 'h2',css: {
        '.sIFR-root': { 'color': '#007e7f', 'text-align':'left' }
      },
      wmode: 'transparent',
	  transparent: true 
      ,filters: {
        DropShadow: {
          knockout: false
          ,distance: 1
          ,color: '#c0c0c0'
          ,strength: 1
        }
      }

});



