/*****************************************************************************
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 Futura.

/*****************************************************************************
    The sIFR configuration should typically go in `sifr-config.js`, but in order to
    keep the config file clean, and to give a quick overview, it's done here instead.
    *****************************************************************************/
  
    var franklin = { src: '/inc-swf/Franklin.swf' };
	var franklinB = { src: '/inc-swf/FranklinBold.swf' };
	var arialNarrow = { src: '/inc-swf/ArialNarrow.swf' };

    // You probably want to switch this on, but read <http://wiki.novemberborn.net/sifr3/DetectingCSSLoad> first.
    // sIFR.useStyleCheck = true;
    sIFR.activate(franklin, arialNarrow, franklinB);

     sIFR.replace(franklinB, {
	  selector: '.WinBig h1'
	  ,css: [
		'.sIFR-root {font-weight: bolder; text-transform: uppercase; color: #ff048e; font-size:23px; }'
	  ]
	  ,wmode: 'transparent'
	});
	
	sIFR.replace(franklinB, {
	  selector: '.WinBig h2'
	  ,css: [
		'.sIFR-root {font-weight: bolder; text-transform: uppercase; color: #33ccff; font-size:25px; leading: -7; }'
	  ]
	  ,wmode: 'transparent'
	});
	
	
	sIFR.replace(arialNarrow, {
	  selector: '.WinBig ul li span'
	  ,css: [
		'.sIFR-root { color:#000000;  font-size: 22px;}'
	  ]
	  ,wmode: 'transparent'
	});
	
	
	sIFR.replace(arialNarrow, {
	  selector: '.ViewStory .TitleSto'
	  ,css: [
		'.sIFR-root { color:#000000; font-size: 29px;}'
	  ]
	  ,wmode: 'transparent'
	});
	
	
	
	sIFR.replace(franklinB, {
      selector: '.WinBig h3'
     ,css: [
		'.sIFR-root {font-weight: bolder; text-transform: uppercase; color: #999999; font-size:14px; leading: 0;}'
	  ]
	  ,wmode: 'transparent'
    });
	
	
	sIFR.replace(franklinB, {
      selector: '.DetailStory .DataEnter .InputTable .Col01'
     ,css: [
		'.sIFR-root {font-weight: bolder; text-transform: uppercase; color: #999; }'
	  ]
	  ,wmode: 'transparent'
    });
	
	sIFR.replace(franklinB, {
      selector: '.Photo .TitPhoto'
     ,css: [
		'.sIFR-root {font-weight: bolder; text-transform: uppercase; color: #999; }'
	  ]
	  ,wmode: 'transparent'
    });
	
	sIFR.replace(arialNarrow, {
	  selector: '.Terms h2'
	  ,css: [
		'.sIFR-root { color:#000000; font-size:2.0em; }'
	  ]
	  ,wmode: 'transparent'
	});
	
