// JavaScript Document    
    /*****************************************************************************
    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.
    *****************************************************************************/

/* da qui coontrollo quali paragrafi formatttare in flash*/

    var carattere01 = {
      src: '/libs/sifr3-r436/my-swf/Avenir35.swf'
    };

    var carattere02 = {
      src: '/libs/sifr3-r436/my-swf/Avenir45.swf'
    };

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

    sIFR.replace(carattere02, {
      selector: 'h1'
      ,css: [
        '.sIFR-root { font-weight: bold; color: #FF8200;}'
      ]
    });
  
    sIFR.replace(carattere02, {
      selector: 'h5'
      ,css: 'em { font-style: normal; color: #495C6A; }'
      ,selectable: false
    });
  
    sIFR.replace(carattere01, {
      selector: 'h3'
      ,css: {
        '.sIFR-root': { color: '#222931' }
      }
    });
  
    sIFR.replace(carattere02, {
      selector: 'leftnav'
      ,css: [
        '.sIFR-root { }'
        ,'a {  }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #CCCCCC; }'
      ]
    });
  
    sIFR.replace(carattere02, {
      selector: 'h4'
      ,css: {
        '.sIFR-root': { 'color': '#2d3d4c' }
      }
    });