$(function () {
   $('#note-separator').hide();
   $('#note-small').hide();
   
   $('#note-link a.note-close').click(function () {
       $('#note-big').hide();
           $('#note-link').hide();
           $('#note-separator').fadeIn();
           $('#note-small').fadeIn();
   });
});

