function applyAudioPlayer() {
   var currentID = "";
   $("a.audio").click(function(event){

     //-- Determine where to place the player
     var w=400;
     var h=27;
     var t = ($(window).height()-h)/2;
     var l = ($(window).width()-w)/2;

     //-- Add the overlay / flash player and remove scroll bars
     $("body")
        .append('<div id="overlay"></div><div id="flash_container"></div>')
     $("#overlay").animate({"opacity":"0.6"}, 200, "linear");

     //-- Load the flash player and make it visiable
     $("#flash_container").flash({
         src: 'http://www.google.com/reader/ui/3247397568-audio-player.swf?audioUrl='+event.target.href,
         width: w,
         height: h,
         wmode: 'window',
         quality: 'best',
         bgcolor: "#ffffff",
         allowscriptaccess: "never",
         flashvars: { playerMode: 'embedded' }
        }
     );
     $("#flash_container").css( 'top', t+'px');
     $("#flash_container").css( 'left', l+'px');
     $("#flash_container").animate({"opacity":"1"}, 200, "linear");
	   try {
       pageTracker._trackPageview(event.target.href);
   	 } catch(e) {
   		 //nothing here
	   }
     
     //-- Allow the lightbox to be closed
     $("#overlay").click(function(){
         $("#flash_container, #overlay").remove();
     });

     event.preventDefault();
   });
 }

