$(document).ready(function() {
// hides the slickbox as soon as the DOM is ready
// (a little sooner than page load)					  
	$('.slick-hide').hide();
// shows the slickbox on clicking the noted link	
	$('.slick-show').click(function() {
		$(this).next().slideToggle(400);
	});
});