$(document).ready(function(){
    $('h1.special').flash(
        {
            src: '/flash/zapfino2.swf',
			wmode: 'transparent',
            flashvars: {
                css: [
                    '* { color: #114E8B; }',
                    'a { color: #114E8B; text-decoration: none; }',
                    'a:hover { text-decoration: underline; }'
                ].join(' ')
            }
        },
        { version: 7 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = $(this).html();
            this.innerHTML = '<div>'+$(this).html()+'</div>';
            var $alt = $(this.firstChild);
            htmlOptions.height = 84;//$alt.height();
            htmlOptions.width = $alt.width();
            $alt.addClass('alt');
            $(this)
                .addClass('flash-replaced')
                .prepend($.fn.flash.transform(htmlOptions));
        }
    );
});

