 /*****************************************************************************
    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 adi = {
      src: 'js/sifr/adi.swf'
      ,tuneHeight: 0
      ,offsetTop: 0
    };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    sIFR.useStyleCheck = true;
    sIFR.fitExactly=true;
    sIFR.activate(adi);

  
    sIFR.replace(adi, {
    	selector: 'ul.leftmenu li'
			, css: [
				'.sIFR-root { color: #666;}'
				,'a {color: #666; text-decoration: none; }'
				,'a:hover {color: #5d904e;}'
			]
    	, wmode: 'transparent'
    });
  
   sIFR.replace(adi, {
      selector: 'h1,h2'
      ,css: [
      	'.sIFR-root { color: #5d904e;}'
      	,'a {color: #666; text-decoration: none; }'
      	,'a:hover {color: #5d904e;}'
      ]
      ,wmode: 'transparent'
     
    });
    
    sIFR.replace(adi, {
      selector: 'h3'
      ,css: [
      	'.sIFR-root { color: #5d904e; text-transform: uppercase;}'
      	,'a {color: #666; text-decoration: none; }'
      	,'a:hover {color: #5d904e;}'
      ]
      ,wmode: 'transparent'

    });
    
    sIFR.replace(adi, {
      selector: 'strong'
      ,css: [
      	'.sIFR-root { color: #5d904e; font-size: 16px;}'
      ]
      ,wmode: 'transparent'
	  ,offsetTop: 3
    });
  

