$(document).ready(function(){
  
  
  
 
  $('.post h2').flash(
    { 
        src: '/themes/blueSilence/js/calvertStd.swf',
        flashvars: { 
            css: [
                '* { color: #75ad00; }',
                'a { color: #75ad00; text-decoration: none; }',
                'a:hover { color: #f20a5e; text-decoration: none; }'
            ].join(' ')
        }
    },
    { version: 7 },
    function(htmlOptions) {
        htmlOptions.flashvars.txt = this.innerHTML;
        htmlOptions.wmode = 'transparent';
        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));						
    }
  );
    
  
  
  
  
});