 /*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/

    var georgia = {
      src: '/images/georgia.swf'
    };


    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(georgia);

    sIFR.replace(georgia, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'letter-spacing': -2, 'leading': '-25', 'font-style': 'italic' }
      }
    });

	sIFR.replace(georgia, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'letter-spacing': 0, 'leading': '-4', 'font-style': 'italic' }
      }
    });

    sIFR.replace(georgia, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'leading': '1', 'font-style': 'italic' }
      }
    });

    sIFR.replace(georgia, {
      selector: '.center'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'leading': '1', 'text-align': 'center', 'font-style': 'italic' }
      }
    });

    sIFR.replace(georgia, {
      selector: 'h4'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'leading': '0', 'font-style': 'italic' }
      }
    });
	
	
    sIFR.replace(georgia, {
      selector: 'h5'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'leading': '0', 'font-style': 'italic' }
      }
    });	
	

    sIFR.replace(georgia, {
      selector: 'h6'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#0872B9', 'leading': '0', 'font-style': 'italic' }
      }
    });	
	
	sIFR.replace(georgia, {
	  selector: '#subnav ul li' //DON'T	try to SIFR-replace the 'a' in the subnav, instead just replace the 'li'
	  ,wmode: 'transparent'
	  ,css: {
		'.sIFR-root': { 'color': '#0872B9', 'leading': '0', 'font-style': 'italic' },
		'a': { 'text-decoration': 'none' },
		'a:link': { 'color': '#0872B9' },
		'a:hover': { 'color': '#666666' }
	  }
	});


	sIFR.replace(georgia, {
	  selector: 'ul.sifrlink li' //DON'T	try to SIFR-replace the 'a' in the subnav, instead just replace the 'li'
	  ,wmode: 'transparent'
	  ,css: {
		'.sIFR-root': { 'color': '#0872B9', 'leading': '0', 'font-style': 'italic' },
		'a': { 'text-decoration': 'none' },
		'a:link': { 'color': '#0872B9' },
		'a:hover': { 'color': '#666666' }
	  }
	});

