
	//var thesis = { src: '/files/script/sifr3-r436/demo/rockwell.swf' };
	var mix		= { src: '/files/layout/sifr/mix.swf' };
	var mixcaps = { src: '/files/layout/sifr/mixcaps.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(mix);

// If you want, you can use multiple movies, like so:
//    sIFR.activate(futura, 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 Futura movie.
// Read more about styling at <http://wiki.novemberborn.net/sifr3/Styling>.

sIFR.replace(mix, {
  selector: '#menu h4',
  css: '.sIFR-root { background-color: #EFEFEF; color: #FF0000; text-transform: uppercase;}',
  wmode: 'transparent'	  
});

sIFR.replace(mixcaps, {
  selector: '#menu h2',
  css: '.sIFR-root { background-color: #FFFFFF; color: #F1017E; }',
  wmode: 'transparent'	  
});

sIFR.replace(mixcaps, {
  selector: 'h1.black',
  css: '.sIFR-root { background-color: #FFFFFF; color: #000000;}',
  wmode: 'transparent'	  
});

sIFR.replace(mixcaps, {
  selector: '.steps .part ',
  css: '.sIFR-root { background-color: #FFFFFF; color: #F1017E;}',
  wmode: 'transparent'	  
});

sIFR.replace(mix, {
  selector: '.comment h3 ',
  css: '.sIFR-root {background-color: #FFFFFF; color: #F1017E;}',
  wmode: 'transparent'	  
});

sIFR.replace(mix, {
  selector: 'h2',
  css: '.sIFR-root {background-color: #FFFFFF; color: #000000;}',
  wmode: 'transparent'	  
});

sIFR.replace(mix, {
  selector: '#slogan-bottom p',
  css: '.sIFR-root {background-color: #FFFFFF; color: #39363d;}',
  wmode: 'transparent'
});

sIFR.replace(mix, {
  selector: '#slogan-top p',
  css: '.sIFR-root {background-color: #FFFFFF; color: #39363d;}',
  wmode: 'transparent'
});









