 /*****************************************************************************
    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 serpentine = {
      src: 'js/sifr/serpentine.swf'
      ,tuneHeight: -8
      ,offsetTop: -2
    }

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    sIFR.useStyleCheck = true;
    sIFR.fitExactly=true;
    sIFR.activate(serpentine);
 
   sIFR.replace(serpentine, {
      selector: 'h1,h2,h3,h4,h5,.idTabs li a'
      ,wmode: 'transparent'
      ,css: [
        '.sIFR-root { color: #ea6da2; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #ea6da2; }'
        ,'a:hover { color: #ea6da2; }'
        ,'li a {color: #ea6da2;}'
      ]
    
    });
    
