var sifrFont1 = {
	src: '/flash/sifr/FrutigerLTStd55Roman.swf'
};

sIFR.activate(sifrFont1);

sIFR.replace(sifrFont1, {
	selector: 'h1'
    ,css: [
    	'.sIFR-root { text-align: left; font-weight: normal; color: #404040; }'
    	,'a { text-decoration: none; }'
    	,'a:link { color: #000000; }'
    	,'a:hover { color: #CCCCCC; }'
	]
    ,filters: {
    	DropShadow: {
        	knockout: false
        	,distance: 0
        	,color: '#000000'
        	,strength: 0
        }
	},
	wmode: 'transparent'	  
});
sIFR.replace(sifrFont1, {
	selector: 'h2'
    ,css: [
    	'.sIFR-root { text-align: left; font-weight: normal; color: #404040; }'
    	,'a { text-decoration: underline; }'
    	,'a:link { color: #404040; }'
    	,'a:hover { color: #CCCCCC; }'
	]
    ,
	wmode: 'transparent'	  
});
sIFR.replace(sifrFont1, {
	selector: 'h3'
    ,css: [
    	'.sIFR-root { text-align: left; font-weight: bold; }'
		,'a { text-decoration: underline; }'
		,'a:link { color: #ed1c24; }'
		,'a:hover { color: #b2151b; text-decoration: underline;}'
	]
    ,
  	wmode: 'transparent'	  
});    
sIFR.replace(sifrFont1, {
	selector: 'h4.subhead'
    ,css: {
    	'.sIFR-root': { 'color': '#660000', 'letter-spacing': -1.5, 'text-transform': 'capitalize' }
	}
	,filters: {
    	DropShadow: {
        	knockout: true
			,distance: 1
			,color: '#330000'
			,strength: 2
		}
	}
});
function reDrawSifr(){
     sIFR.replace(sifrFont1, {
     selector: 'h2'
     ,css: [
       '.sIFR-root { text-align: left; font-weight: normal; color: #404040; }'
     ]
     ,
  	wmode: 'transparent'	  
   });
     sIFR.replace(sifrFont1, {
     selector: 'h3'
     ,css: [
       '.sIFR-root { text-align: left; font-weight: bold; }'
     ]
     ,
  	wmode: 'transparent'	  
   });   
}

