// Make an object pointing to the location of the Flash movie on your web server.
// Try using the font name as the variable name, makes it easy to remember which
// object you're using. As an example in this file, we'll use Futura.
var fDiavlo = { src: '/laboratory/sifr3/swf/diavlo.swf' };
var fCochin = { src: '/laboratory/sifr3/swf/cochin.swf' };

// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(fDiavlo, fCochin);


sIFR.replace(fDiavlo, {
	selector: 'h1.example1',
	css: '.sIFR-root { background-color: #ffffff; color: #775555; }'
});

sIFR.replace(fCochin, {
	selector: 'h1.example2',
	css: [
		'.sIFR-root { color: #775555; }',
		'em { font-style:italic; color: #444477; }',
		'strong { font-style:bold; color: #44aa44; }',
		'.bold { font-style:bold; text-decoration:underline; }',
		'a { color: #aa4444; }',
		'a:hover { color: #bbbb44; }',
	]
});

sIFR.replace(fDiavlo, {
	selector: 'h1.example3',
	css: '.sIFR-root { color: #775555; }'
});
sIFR.replace(fDiavlo, {
	wmode: 'transparent',
	selector: 'h2.example3',
	css: '.sIFR-root { color: #ddaaaa; }'
});

sIFR.replace(fCochin, {
	selector: 'h1.example4',
	css: '.sIFR-root { color: #aa7777; }',
	filters: {
    DropShadow: {
      knockout: false,
      distance: 3,
      color: '#cccccc',
      strength: 3,
      angle:120
    }
  }
});
