$(document).ready(function() {
  $('a#toggle_work').click(function() {
    $('#work').toggle();
    return false;
  });
});