/*****************************************************************************
It is adviced to place the sIFR JavaScript calls in this file, keeping it
separate from the `sifr.js` file. That way, you can easily swap the `sifr.js`
file for a new version, while keeping the configuration.

You must load this file *after* loading `sifr.js`.

That said, you're of course free to merge the JavaScript files. Just make sure
the copyright statement in `sifr.js` is kept intact.
*****************************************************************************/
 var diavlo = {
      src: 'flash/diavlo.swf'
    };

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

    sIFR.replace(diavlo, {
      selector: '#navigate li'
      ,css: [
        '.sIFR-root { text-align: left; margin-top: 5px; font-size: 18px;}'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #01366a; }'
        ,'a:hover { color: #0a9aea; text-decoration: none; }'
      ]
	  ,wmode: 'transparent'
	  ,filters: {
        DropShadow: {
          knockout: false
          ,distance: .5
          ,color: '#000000'
          ,strength: .2
        }
      }
    });

  
    