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