/* work around msie braindead hover pseudoclass support */

$(document).ready(function(){

    $('font.mp3 a').click(function () {
      var url = this.href ;
      $(this).flash(
        {
          src: 'img/player_mp3_maxi.swf', height: 0, width: 0,
          flashvars: {
            mp3: url, 
            showinfo: '0', showstop: '0', autoplay: '1', showinfo: '0', showslider: '0', height: 1, width: 1,
            textcolor: '000000', buttoncolor: '000000',
            buttonovercolor: '000000', bgcolor1: 'EBE6D3', bgcolor2: 'CCC091',
            sliderovercolor: '000000'
          }
        },
        {version: 6},
        function (opts) {
          $(this).parent().after($.fn.flash.transform(opts)) ;
        }
      ) ;
      return false ;
    }) ;

}) ;
