$(document).ready(function() {
	
	//hide the box
	$('#slickbox').hide();
  
  	//show the box
  	$('#slick-toggle').click(function() {
    $('#slickbox').slideToggle(400);
    return false;
  });

});