/*****************************************************************************
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.
*****************************************************************************/

// 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 alber_light.
var alber_light = { src: '/js/sifr/alber-light.swf' };
var alber_regular = { src: '/js/sifr/alber-regular.swf' };
var alber_bold = { src: '/js/sifr/alber-bold.swf' };

// 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;

// Next, activate sIFR:
sIFR.activate(alber_light);

// If you want, you can use multiple movies, like so:
//
//    var alber_light = { src: '/path/to/alber_light.swf' };
//    var garamond = { src '/path/to/garamond.swf' };
//    var rockwell = { src: '/path/to/rockwell.swf' };
//    
//    sIFR.activate(alber_light, garamond, rockwell);
//
// Remember, there must be *only one* `sIFR.activate()`!

// Now we can do the replacements. You can do as many as you like, but just
// as an example, we'll replace all `<h1>` elements with the alber_light movie.
// 
// The first argument to `sIFR.replace` is the `alber_light` 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(alber_bold, {
  transparent:true,
  selector: '.h1_wrap h1',
  fitExactly:true,
  forceSingleLine:true,
  offsetTop:5,  
  css: [
	   '.sIFR-root { 	margin:0px 0px 0px 0px;	padding:0px; color:#97d5ff;	font-size:37px; }'
	   ]
});

sIFR.replace(alber_regular, {
  transparent:true,
  selector: '.h1_wrap h2',
  fitExactly:true,
  offsetTop:0, 
  forceSingleLine:true,
  css: [
	   '.sIFR-root { margin:0px; padding:0px; font-weight:normal;color:#ffffff;	font-size:22px; }'
	   ]
});

sIFR.replace(alber_regular, {
  transparent:true,
  selector: 'h4',
  fitExactly:true,
  offsetTop:0, 
  forceSingleLine:true,
  css: [
	   '.sIFR-root { margin:0px; padding:0px; font-weight:normal;color:#97d5ff;	font-size:18px; }'
	   ]
});

sIFR.replace(alber_light, {
  selector: 'ul#nav li',
  offsetTop:53,
  offsetLeft:5,
  tuneHeight:+55,
  css: [
      '.sIFR-root { width:105px; height:75px; background-color:#2d4f69; display:block; color:#ffffff; }'
	  ,'a { width:105px; text-decoration:none; height:75px; background-color:#2d4f69; display:block; color:#ffffff; }'
      ,'a:hover { color:#97d5ff; background-color:#446279; text-decoration:none; }'
 ]
});

sIFR.replace(alber_light, {
  transparent:true,
  selector: '#container p',
  fitExactly:true,
  css: [
	   '.sIFR-root { color: #cad7df; width:auto; font-size:13px; leading:4; margin-bottom:15px; }'
      ,'a { color: #97d5ff; cursor:pointer; text-decoration:none; font-size:13px; }'
      ,'a:hover { color: #99d5ff; text-decoration:none; }'
	  ,'.normal { color: #cad7df; text-decoration:none; }'
	  ,'.red { color: #ff0000; text-decoration:none; }'
 ]
});

sIFR.replace(alber_light, {
  transparent:true,
  selector: '#container p, table tr td span',
  preventWrap:true,
  tuneWidth:+5,
  css: [
	   '.sIFR-root { color: #cad7df; width:auto; font-size:13px; leading:4; margin-top:15px; }'
      ,'a { color: #97d5ff; cursor:pointer; text-decoration:none; font-size:13px; }'
      ,'a:hover { color: #99d5ff; text-decoration:none; }'
	  ,'.normal { color: #cad7df; text-decoration:none; }'
 ]
});


sIFR.replace(alber_light, {
  transparent:true,
  selector: 'ul.formatted li',
  fitExactly:true,
  preventWrap:true,
  css: [
	   '.sIFR-root { color: #cad7df; width:auto; font-size:13px; leading:4; margin-bottom:15px; }'
      ,'a { color: #97d5ff; cursor:pointer; text-decoration:none; font-size:13px; }'
      ,'a:hover { color: #ffffff; text-decoration:none; }'
 ]
});

sIFR.replace(alber_light, {

  selector: 'ul.blockUL li',

  preventWrap:true,
  tuneWidth:+40,
  offsetLeft:6,
  offsetTop:4,
  css: [
	   '.sIFR-root { background-color: #214561; width:auto; font-size:13px; leading:4; margin-bottom:15px; }'
      ,'a { background-color: #214561; color:#97d5ff; text-decoration:none; padding:4px 6px; width:100%;  display:block; margin:5px; }'
      ,'a:hover { color: #ffffff; text-decoration:none; }'
 ]
});


sIFR.replace(alber_light, {
  transparent:true,
  selector: '#footer ul li',
  fitExactly:true,
  forceSingleLine:true,
  tuneHeight:-7,
  css: [
	   '.sIFR-root { color:#bec6cd;	font-weight:normal;	font-size:11px; }'
      ,'a { color:#bec6cd;	font-weight:normal;	font-size:11px;}'
      ,'a:hover { color: #ffffff; text-decoration:none; }'
 ]
});

sIFR.replace(alber_light, {
  transparent:true,
  selector: '#footer p',
  fitExactly:true,
  offsetTop:3,
  css: [
	   '.sIFR-root { color:#bec6cd;	font-weight:normal;	font-size:11px; }'
      ,'a { color:#bec6cd;	font-weight:normal;	font-size:11px; }'
      ,'a:hover { color:#bec6cd;	font-weight:normal;	font-size:11px; }'
 ]
});
