var sifrPath = window.jsRootPath + 'sifr/';

var newGothicStd = {
	src: sifrPath + 'News-gothic-std.swf'
	,wmode: 'transparent' 
};

var omniBookRegular = {
	src: sifrPath + 'Omni-book-regular.swf'
	,wmode: 'transparent' 
};

sIFR.useStyleCheck = true;
sIFR.activate(newGothicStd);
sIFR.activate(omniBookRegular);

sIFR.replace(omniBookRegular, {
  selector: 'h1',
  css: [
  		'.sIFR-root { color: #0786c9; }'
  	   ]
});

sIFR.replace(omniBookRegular, {
  selector: 'h2.home',
  css: [
		  '.sIFR-root { color: #0786c9; }'
  	   ]
});

sIFR.replace(omniBookRegular, {
  selector: 'h2',
  css: [
		  '.sIFR-root { color: #333333; }'
  	   ]
});

sIFR.replace(newGothicStd, {
  selector: 'h3',
  css: [
  		'.sIFR-root { color: #ffffff; }'
  	   ]
});
