var agoraSlab = { src: '/images/agoraslab.swf',
                  css: '.sIFR-root { background-color : #0e0709; color : #ffffff; leading : 0, cursor : arrow; } a { color : #fff; } a:hover { color : #fff; }' };
var agoraSlabBd = { src: '/images/agoraslab-bd.swf',
                    css: '.sIFR-root { font-size : 14; background-color : #0e0709; color : #ffffff; leading: -1; cursor : hand; } a { color : #fff; text-decoration : none; } a:hover { color : #fff; text-decoration : none; } ' };

// Now you can set some configuration settings.
// See also <http://wiki.novemberborn.net/sifr3/JavaScript+Configuration>.
// One setting you probably want to use is `sIFR.useStyleCheck`. Before you do that,
// read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad>.

sIFR.useStyleCheck = true;
sIFR.activate(agoraSlab, agoraSlabBd);

// The first argument to `sIFR.replace` is the `futura` object we created earlier.
// The second argument is another object, on which you can specify a number of
// parameters or "keyword arguemnts". For the full list, see "Keyword arguments"
// under `replace(kwargs, mergeKwargs)` at 
// <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
// 
// The first argument you see here is `selector`, which is a normal CSS selector.
// That means you can also do things like '#content h1' or 'h1.title'.
//
// The second argument determines what the Flash text looks like. The main text
// is styled via the `.sIFR-root` class. Here we've specified `background-color`
// of the entire Flash movie to be a light grey, and the `color` of the text to
// be red. Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.

sIFR.replace(agoraSlab, {
  selector: '#body h1',
  tuneHeight: -6,
  selectable: false,
  filters: { Bevel : { type: 'inner', blurY: 16, blurX: 110, knockout: false, shadowColor: 4473924, hilightColor: 16777215, angle: 90, distance: 13 } },
  wmode: 'transparent'
});

sIFR.replace(agoraSlab, {
  selector: '#body h2',
  tuneHeight: -6,
  selectable: false,
  /*filters: { Bevel : { type: 'inner', blurY: 10, blurX: 110, knockout: false, shadowColor: 4473924, hilightColor: 16777215, angle: 90, distance: 8 } },*/
  wmode: 'transparent'
});

sIFR.replace(agoraSlabBd, {
	selector: '#body h3',
	tuneHeight : -7,
	tuneWidth : 3,
	selectable : true,
	wmode : 'transparent'
});

sIFR.replace(agoraSlabBd, {
	selector: '#menu ul li a',
	tuneHeight : -5,
	tuneWidth : 1,
	forceSingleLine: true,
	selectable: false,
	wmode: 'transparent'
});

sIFR.replace(agoraSlabBd, {
	selector: '#head address',
	tuneHeight : -5,
	tuneWidth : 1,
	forceSingleLine: true,
	wmode: 'transparent'
});

sIFR.replace(agoraSlabBd, {
	selector: '#body p.home span.address',
	tuneHeight : -5,
	tuneWidth : 1,
	forceSingleLine: true,
	wmode: 'transparent'
});

sIFR.replace(agoraSlab, {
	selector: '#body p.sub-h1',
	tuneHeight: -6,
	wmode: 'transparent'
});