/*****************************************************************************
    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 sari = {
      src: '/aglet.swf'
      ,ratios: [7, 1.32, 8, 1.31, 12, 1.27, 20, 1.22, 28, 1.19, 30, 1.17, 31, 1.18, 45, 1.17, 61, 1.16, 66, 1.15, 67, 1.16, 108, 1.15, 111, 1.14, 113, 1.15, 118, 1.14, 120, 1.15, 1.14]
    };

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

    sIFR.replace(sari, {
      selector: 'h1'
      ,wmode: 'transparent'
	  ,css: [
        '.sIFR-root { text-align: left; color: #000000; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #FFFFFF; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
	  
	  

    });
	
	
	sIFR.replace(sari, {
      selector: 'h2'
      ,wmode: 'transparent'
	  ,css: [
        '.sIFR-root { text-align: left; color: #234d89; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #FFFFFF; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
	  
	  

    });
	
	//sIFR.debug.ratios({ src: 'aglet.swf', selector: 'h1' });
	sIFR.replace(sari, {
      selector: 'h3'
      ,wmode: 'transparent'
	  ,css: [
        '.sIFR-root { text-align: left; color: #fff5e9; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #fff5e9; }'
        ,'a:hover { color: #000000; }'
      ]
	  
    });
 