/*****************************************************************************
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.
*****************************************************************************/
// Shortened the original documentation to save on file size. 
// Original package available at http://wiki.novemberborn.net/sifr3/
// Path to SWF file(s). (Relative to the HTML file they're embedded in, not this file) 

var metanormal = { src: '/js/sifr/meta-normal.swf'};
var metabold = { src: '/js/sifr/meta-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:
// Add new variables / objects in a comma-separated list


sIFR.activate(metanormal,metabold);

/* Replacements: 
	Parameter 1: Flash file we want to use
	Parameter 2: An object containing a selector and any number of keyword arguments,
	Read more about Keyword arguments: <http://wiki.novemberborn.net/sifr3/JavaScript+Methods>.
	Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.
*/	

  			
sIFR.replace(metabold, {
  selector: '#homeColumn1 h1, #homeColumn2 h1,#homeFeature h1,#homeColumn3 h1,#homeCommunity h1',
  wmode:'transparent'
});

sIFR.replace(metabold, {
  selector: '#productsHeader h1, #productsHeader h2, #productsHeader h3',
  wmode:'transparent'
});


