/*****************************************************************************
WINEFLIRT's sIFR config file
*****************************************************************************/

// NOTE: full tutorial here :: http://net.tutsplus.com/tutorials/javascript-ajax/how-to-implement-sifr3-into-your-website/#comment-45122

// You need to declare a variable for each font, pointing to the swf url

// Font: Trade Gothic Bold Condensed
var tgbc = { src: '/wp-content/themes/mym-shell/flash/sifr/trade-gothic_bold-cond.swf' };  

// Font: Perla
var perla = { src: '/wp-content/themes/mym-shell/flash/sifr/perla.swf' }; 

// Next, activate sIFR, you can make more than one font by separating with a comma after each font.
sIFR.activate(tgbc, perla);


//<[CDATA[




sIFR.replace({
	src: '/wp-content/themes/mym-shell/flash/sifr/trade-gothic_bold-cond.swf',
	selector: '#Sidebar h3',
  	css: [
  		'.sIFR-root { color: #732DA2; background-color: #FCFAF2; font-size: 18px; text-align: left; text-transform: uppercase; }',
  		'a { text-decoration: none; }',
  		'a:link { color: #732DA2; }',
  		'a:hover { text-decoration: none; }'
  	]
});

sIFR.replace({
	src: '/wp-content/themes/mym-shell/flash/sifr/perla.swf',
	selector: '#Sidebar dl dt',
  	css: [
  		'.sIFR-root { color: #723DA2; background-color: #FCFAF2; font-size: 24px; text-align: left; }',
  		'a { text-decoration: none; }',
  		'a:link { text-decoration: none; color: #732DA2; }',
  		'a:hover { text-decoration: none; color: #FF0099; }'
  	]
});

//]]>




