$(document).ready(function() { 
  // toggles the slickbox on clicking the noted link
  $('a#btn_project').click(function() {
    $('#project_list').toggle();
    return false;
  });
});
