// Make an object pointing to the location of the Flash movie on your web server.
var MetaNormal = { src: '../assets/MetaNormal.swf' };
var Isonorm = { src: '../assets/Isonorm.swf' };


// Next, activate sIFR:
sIFR.activate(MetaNormal, Isonorm);

sIFR.replace(MetaNormal, {
      selector: 'li.nav'
      ,css: [
        '.sIFR-root { color: #ffffff; font-size: 18;}'
        ,'a { text-decoration: none;}'
        ,'a:link { color: #9daeb8; }'
        ,'a:hover { color: #ffffff;}'
      ]
	  ,wmode: 'transparent'
    });

sIFR.replace(Isonorm, {
      selector: 'h1.title'
      ,css: [
        '.sIFR-root { color: #ffffff; font-size: 18;}'
        ,'a { color: #ffffff; text-decoration: none; }'
        ,'a:link { color: #ffffff; }'
        ,'a:hover { color: #ffffff; text-decoration: underline; }'
      ]
	  ,wmode: 'transparent'
    });



