$(function(){
   $('.hide_at_first').hide();
   $('html').mousemove(function() {
       $('.hide_at_first').fadeIn(2000);
   });
});

