// JavaScript Document
$(document).ready(function() { 
	$('.calloutWhite > h2').flash(
		{ 
			src: '/flash/helvetica_condensed_bold.swf',
			wmode: 'transparent',
			flashvars: {
				css: [
					'* { color: #465670; }'
				].join(' ')
			}
		},
		{ version: 7 },
		function(htmlOptions) {
			htmlOptions.flashvars.txt = $(this).html();
			htmlOptions.height = $(this).height() + 4;
			htmlOptions.width = $(this).width();

			$(this).wrapInner('<div class="altHeaderText"></div>');
			$(this).addClass("flash-replaced");
			$(this).prepend($.fn.flash.transform(htmlOptions));
		}
	);
	$('.calloutBlue > h2').flash(
		{ 
			src: '/flash/helvetica_condensed_bold.swf',
			wmode: 'transparent',
			flashvars: {
				css: [
					'* { color: #465670; }'
				].join(' ')
			}
		},
		{ version: 7 },
		function(htmlOptions) {
			htmlOptions.flashvars.txt = $(this).html();
			htmlOptions.height = $(this).height() + 4;
			htmlOptions.width = $(this).width();

			$(this).wrapInner('<div class="altHeaderText"></div>');
			$(this).addClass("flash-replaced");
			$(this).prepend($.fn.flash.transform(htmlOptions));
		}
	);
	$('div.altHeaderText').hide();
});