// Define objects for sIFR SWFs
var gotham = {
	src: '/flash/gotham.swf',
	ratios: [8, 1.41, 10, 1.33, 14, 1.31, 16, 1.26, 20, 1.27, 24, 1.26, 25, 1.24, 26, 1.25, 35, 1.24, 49, 1.23, 74, 1.22, 75, 1.21, 79, 1.22, 80, 1.21, 81, 1.22, 1.21]
};
var gothamLight = {
	src: '/flash/gothamLight.swf',
	ratios: [8, 1.41, 10, 1.33, 14, 1.31, 16, 1.26, 20, 1.27, 24, 1.26, 25, 1.24, 26, 1.25, 35, 1.24, 49, 1.23, 74, 1.22, 75, 1.21, 79, 1.22, 80, 1.21, 81, 1.22, 1.21]
};

// Next, activate sIFR (use each font as an argument):
sIFR.forceTextTransform = true;
sIFR.activate(gotham, gothamLight);

/* FOR GETTING RATIOS!
sIFR.debug.ratios(
	gothamLight,
	{
		selector: '#friday .netcast'
	}
);*/

// Do replacements
/*sIFR.replace(
	gotham,
	{
		selector: '#flash_header .video-links',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #FFFFFF; font-family: "Gotham Book"; }'
		]
	}
);*/
sIFR.replace(
	gothamLight,
	{
		selector: '.day-title',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #FFFFFF; font-family: "Gotham Extra Light"; text-transform: uppercase; }'
		]
	}
);
sIFR.replace(
	gothamLight,
	{
		selector: '.pipe',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #FFFFFF; }'
		]
	}
);
sIFR.replace(
	gothamLight,
	{
		selector: '#friday .netcast, #friday .slideshow',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #DC0082; text-transform: uppercase; }',
			'a { color: #DC0082; text-decoration: none; }',
			'a:hover { color: #FF0A93; }'
		]
	}
);
sIFR.replace(
	gothamLight,
	{
		selector: '#saturday .netcast, #saturday .slideshow',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #CC2E1E; text-transform: uppercase; }',
			'a { color: #CC2E1E; text-decoration: none; }',
			'a:hover { color: #FF1600; }'
		]
	}
);
sIFR.replace(
	gothamLight,
	{
		selector: '#sunday .netcast, #sunday .slideshow',
		wmode: 'transparent',
		fitExactly: true,
		tuneHeight: -4,
		css: [
			'.sIFR-root { background-color: transparent; color: #007FB0; text-transform: uppercase; }',
			'a { color: #007FB0; text-decoration: none; }',
			'a:hover { color: #00B8FF; }'
		]
	}
);