Advertisement
Guest User

stephen

a guest
Dec 29th, 2009
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <script>
  2.     $(document).ready(function(){
  3.     var fadeout = null;
  4.     $("html").mousemove(function() {
  5.       $("div.fadeobject").stop().fadeIn("slow");
  6.       if (fadeout != null) {
  7.     clearTimeout(fadeout);
  8.       }
  9.       fadeout = setTimeout(3000, hide_playerlist);
  10.     });
  11.  
  12.     function hide_playlist() {
  13.       $("div.fadeobject").stop().fadeOut("slow");
  14.     }
  15.     });
  16.     </script>
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement