$(document).ready(function() {
 // Hides the box as the page loads
  $('#newwork').hide();
 // Toggles the box
  $('a#toggle').mouseover(function() {
    $('#newwork').slideToggle(400);
    return false;
  });
});
