/*****************************************************************************
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.
*****************************************************************************/


// 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:

var gotham_bold = { src: '/themes/musicunlimited/flash/gotham_bold.swf', wmode: 'transparent' };

sIFR.activate(gotham_bold);

sIFR.replace(gotham_bold, {
      selector: '.orange h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#FDE17F',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.red h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#FF635A',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.pink h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#F07FBC',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.pink h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#F07FBC',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.purple h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#7F2DA7',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.lblue h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#7FCEEF',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.blue h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#116aca',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.lgreen h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#CBDE86',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: '.green h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: 1,
		  color: '#029742',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});

sIFR.replace(gotham_bold, {
      selector: 'h2',
	  css: {
        '.sIFR-root': { 'color': '#1E2A2D', 'text-transform': 'uppercase' }
      },
	  
	  filters: {
        DropShadow: {
          alpha: .5,
		  color: '#FFFFFF',
		  blurX: 0,
		  blurY: 1,
		  strength: 2,
		  distance: 1,
		  angle: 90
        }
      }
});


