$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  $('#searchBox2').hide();
 // shows the slickbox on clicking the noted link  
  $('#slick-show').click(function() {
    $('#searchBox2').fadeIn();
    return false;
  });
 // hides the slickbox on clicking the noted link  
  $('#slick-hide').click(function() {
    $('#searchBox2').fadeOut();
    return false;
  });
 
 // toggles the slickbox on clicking the noted link  
  $('#slick-toggle').click(function() {
    $('#searchBox2').toggle(400);
    return false;
  });
});
