// 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.
var sifrText = {src: '/swf/sifr.swf'};
var sifrText_3 = {src: '/swf/sifr_3.swf'};
// sIFR.useStyleCheck = true;

// Next, activate sIFR:
sIFR.activate(sifrText);

// MAIN NAV OPTION
sIFR.replace(sifrText, {
	selector: '.sifrNav',
	css: [
		'.sIFR-root {color: #f9d055; font-weight: bold; font-size: 13px; cursor: pointer; text-align: center}',
		'a {color: #f9d055; text-decoration: none}',
		'a:hover {color: #f9d055; text-decoration: none}',
		'a:visited {color: #f9d055; text-decoration: none}',
	]
	, wmode: 'transparent'
});

//MAIN NAV highlight OPTION
sIFR.replace(sifrText, {
	selector: '.sifrNav2',
	css: [
		'.sIFR-root {color: #ffffff; font-weight: bold; font-size: 13px; cursor: pointer; text-align: center}',
		'a {color: #ffffff; text-decoration: none}',
		'a:hover {color: #ffffff; text-decoration: none}',
		'a:visited {color: #ffffff; text-decoration: none}',
	]
	, wmode: 'transparent'
});

sIFR.replace(sifrText, {
	selector: '.sifrNav-center',
	css: [
		'.sIFR-root {color: #f9d055; font-weight: bold; font-size: 13px; cursor: pointer; text-align: center }',
		'a {color: #f9d055; text-decoration: none}',
		'a:hover {color: #f9d055; text-decoration: none}',
		'a:visited {color: #f9d055; text-decoration: none}',
	]
	, wmode: 'transparent'
});

// ELEMENT HEADING (IN SCROLL STYLE)
sIFR.replace(sifrText, {
	selector: '.scroll .sifrHeading_0',
	css: [
		'.sIFR-root {color: #F0E5D6; font-weight: bold; font-size: 13px; text-align: center}',
	]
	, wmode: 'transparent'
});

// ELEMENT HEADING (DEFAULT)
sIFR.replace(sifrText, {
	selector: '.sifrHeading_0, .sifrHeading_4, .sifrHeading_5, .sifrHeading_6, .sifrHeading_7',
	css: [
		'.sIFR-root {color: #f9d055; font-weight: bold; font-size: 13px}',
	]
	, wmode: 'transparent'
});

// ELEMENT HEADING (3)
sIFR.replace(sifrText_3, {
	selector: '.sifrHeading_3',
	css: [
		'.sIFR-root {color: #FFF; font-weight: bold; font-size: 25px; text-align: center}',
	]
	, wmode: 'transparent'
});

