// JavaScript Document
$(document).ready(function() { 
	$('#mainContent > h1').flash(
		{ 
			src: '/flash/jfr_goudy_sans.swf',
			wmode: 'transparent',
			flashvars: {
				css: [
					'* { color: #4f6e8d; }'
				].join(' ')
			}
		},
		{ version: 7 },
		function(htmlOptions) {
			htmlOptions.flashvars.txt = $(this).html();
			htmlOptions.height = $(this).height() + 4;
			htmlOptions.width = $(this).width();

			$(this).wrapInner('<div class="alt"></div>');
			$(this).addClass("flash-replaced");
			$(this).prepend($.fn.flash.transform(htmlOptions));
		}
	);
	$('#videoSidebar > h1').flash(
		{ 
			src: '/flash/jfr_goudy_sans.swf',
			wmode: 'transparent',
			flashvars: {
				css: [
					'* { color: #4f6e8d; }'
				].join(' ')
			}
		},
		{ version: 7 },
		function(htmlOptions) {
			htmlOptions.flashvars.txt = $(this).html();
			htmlOptions.height = $(this).height() + 4;
			htmlOptions.width = $(this).width();

			$(this).wrapInner('<div class="alt"></div>');
			$(this).addClass("flash-replaced");
			$(this).prepend($.fn.flash.transform(htmlOptions));
		}
	);
	$('div.alt').hide();
});