$(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready

 var hidetime = 'slow'; 

 // (a little sooner than page load)

  $('.boxa').hide();
    $('#boxb').hide();

 
 

 // shows the slickbox on clicking the noted link  

  $('a#linka').click(function() {
  $('.boxa').slideToggle('slow');

    return false;

  });

    


  });



 
