$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
  $('#Share').hide();
  $('#Report').hide();
 // slides down, up, and toggle the slickbox on click    
  $('#Share-toggle').click(function() {
    $('#Share').slideToggle(300);
    return false;
  });
    $('#Share-Close').click(function() {
    $('#Share').slideToggle(300);
    return false;
  });
  
  
    $('#Report-toggle').click(function() {
    $('#Report').slideToggle(300);
    return false;
  });
    $('#Report-Close').click(function() {
    $('#Report').slideToggle(300);
    return false;
  });
  
});
