$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $('#martindale, #desc, #desc1, #desc2').hide();
 // shows the slickbox on clicking the noted link
  $('#slick-show, .show-link').click(function() {
 $('#martindale, .box').toggle('fast');
 return false;
  });
  
  // show the slickbox on clicking the noted link  
  $('#show1').click(function() {
    $('#desc1').show('slow');
    return false;
  });
  
   // hide the slickbox on clicking the noted link  
  $('#hide1').click(function() {
    $('#desc1').hide('slow');
    return false;
  });
  
    // show the slickbox on clicking the noted link  
  $('#show2').click(function() {
    $('#desc2').show('slow');
    return false;
  });
  
   // hide the slickbox on clicking the noted link  
  $('#hide2').click(function() {
    $('#desc2').hide('slow');
    return false;
  });

});









