problem with hiding "dr player" in Mozilla

problem with hiding "dr player" in Mozilla

Hello,
I am making a web page using "dr player" plug in. I am trying to hide the playlist without stopping the music. I have tried the following script:
  1. $(document).ready(function() {
  2.       $('#menu_blog').click(function(){
  3.             $('#blog').show();
  4.             $('#playlist').hide();
  5.        }); return false;
  6. }); 
which hides the playlist, but stops the music, in Mozilla, Chrome, and IE

The following script works well in Chrome and IE - it hides the playlist and the music keeps on going, and I can use the controls wich are separated in another div-tag:
  1. $(document).ready(function() {
  2.       $('#menu_blog').click(function(){
  3.             $('#blog').show();
  4.             $("#playlist").css({"position":"absolute", "left":"-1000px"});
  5.       }); return false;
  6. });

Is there any way to make it work as well in Mozilla?