$(document).ready(function(){
    $('h1').flash(
        {
            src: '/media/Frutiger47LightCondensed.swf',
            flashvars: {
                css: [ '* { color: #666666; }' ].join(' ')
            }
        },
        { version: 8 },
        function(htmlOptions) {
            htmlOptions.flashvars.txt = this.innerHTML;
			htmlOptions.wmode = 'transparent';
            this.innerHTML = '<div>'+this.innerHTML+'</div>';
            var $alt = $(this.firstChild);

            htmlOptions.height = 22;
            htmlOptions.width = 200;
            $alt.addClass('alt');
			//console.log($alt.height());
            $(this)
                .addClass('flash-replaced')
                .prepend($.fn.flash.transform(htmlOptions));
        }

    );
});