$(document).ready(function(){
    $('h1, h2, .flashHeader, .headline').flash(
        { 
            src: 'myriadprolight.swf', 
            flashvars: { 
                css: [
                    '* { color: #69577c; }',
                    'a { color: #3366CC; text-decoration: none; }',
                    'a:hover { color: #207271; text-decoration: none; }'
                ].join(' ')
            },
            wmode: 'transparent'
        },
        { version: 7 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = this.innerHTML;
            this.innerHTML = '<div>'+this.innerHTML+'</div>';
            var $alt = $(this.firstChild);
            htmlOptions.height = $alt.height();
            htmlOptions.width = $alt.width();
            $alt.addClass('alt');
            $(this)
                .addClass('flash-replaced')
                .prepend($.fn.flash.transform(htmlOptions));						
        }
    );
});
