 /*****************************************************************************
    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 myriad = {
      src: 'http://www.studio1440.com/clients/amunix/beta/images/myriad.swf'
    };


    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(myriad);

    sIFR.replace(myriad, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#FFFFFF', 'font-weight': 'bold', 'letter-spacing': -4, 'leading': '-25' }
      }
    });

	sIFR.replace(myriad, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#95A500', 'letter-spacing': -1, 'font-weight': 'bold', 'leading': '-4' }
      }
    });

    sIFR.replace(myriad, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#95A500', 'leading': '0' }
      }
    });
	
    sIFR.replace(myriad, {
      selector: 'h4'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#95A500', 'leading': '0' }
      }
    });
	
	
    sIFR.replace(myriad, {
      selector: 'h5'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#666666', 'leading': '0' }
      }
    });	
	

    sIFR.replace(myriad, {
      selector: 'h6'
      ,wmode: 'transparent'
	  ,css: {
        '.sIFR-root': { 'color': '#AA0000', 'leading': '0' }
      }
    });	
	
	sIFR.replace(myriad, {
	  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': '#666666', 'leading': '0' },
		'a': { 'text-decoration': 'none' },
		'a:link': { 'color': '#666666' },
		'a:hover': { 'color': '#4F4F4F', 'font-weight': 'bold' }
	  }
	});
