var dynamicColor = "";

dynamicColor = $('#dynamicColor').html();

//IF YOU NEED TO GENERATE A NEW .SWF YOU WILL NEED TO GO TO: /library/sifr3/flash and use the trestleNewFont.fla AND GENERATE 
// THE NEW .SWF ON THAT FOLDER AND THEN COPY TO THE LOCAL CLIENT FOLDER.

var textGrey = {
	  src: '/sifr3/trestleNewFont.swf'
	};
	
var crumbTrail = {
  src: '/sifr3/trestleNewFont.swf'
};

sIFR.activate(textGrey,crumbTrail);
sIFR.activate(textGrey);


sIFR.replace(textGrey, {
	selector: '.textGrey',
	wmode: 'transparent',
	css: [
	'.sIFR-root { color: #666666; font-size: 13px; line-height: 1em; font-weight:bold; }',
	'a { text-decoration: none }',
	'a:link { color: #666666 }',
	'a:hover { color: #666666 }'
	]
});

sIFR.replace(crumbTrail, {
	selector: '.crumbTrail',
	wmode: 'transparent',
	css: [
	'.sIFR-root { color: #'+dynamicColor+'; font-size: 16px; line-height: 1em; font-weight:bold; }',
	'a { text-decoration: none }',
	'a:link { color: #'+dynamicColor+'}',
	'a:hover { color: #'+dynamicColor+' }'
	]
});
