
    /*****************************************************************************
    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 museo = {
      src: '/sifr/sifr.swf'
    };

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

    sIFR.replace(museo, {
      selector: 'h2'
      ,css: [
        '.sIFR-root {color: #000000; leading: -6; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #B12585; }'
      ],
	transparent: true,
	fitExactly: true,
	fitWidth: true,
	offsetTop: '-5',
	tuneHeight: '-7px'
    });
	
	    sIFR.replace(museo, {
      selector: 'h3'
      ,css: [
        '.sIFR-root {color: #000000; leading: -2; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #B12585; }'
      ],
	transparent: true,
	fitExactly: true,
	fitWidth: true,
	offsetTop: '-5',
	tuneHeight: '-10px'
    });
	
    sIFR.replace(museo, {
      selector: '.fooBar'
      ,css: [
        '.sIFR-root { font-size: 16px; color: #ffffff; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #ffffff; }'
        ,'a:hover { color: #B12585; }'
      ],
	transparent: true,
	offsetTop: '-3',
	tuneHeight: '-4px',
	fitWidth: true,
	filters: {
        DropShadow: {
          knockout: false
          ,distance: 2
          ,color: '#000000'
          ,strength: 1
        }
      }
    });	
	
	 sIFR.replace(museo, {
      selector: '.sideLink'
      ,css: [
        '.sIFR-root { font-size: 16px; color: #000000; }'
        ,'a { text-decoration: none; }'
        ,'a:link { color: #000000; }'
        ,'a:hover { color: #000000; }'
      ],
	transparent: true,
	offsetTop: '-3',
	tuneHeight: '-4px',
	fitWidth: true
    });	


