$(document).ready(function(){
  $('div').fadeIn('slow');
  $('div.link a').click(function() {
    $('div.page').fadeOut('fast');
   });

});



