$(document).ready(function() {
 // toggles the slickbox on clicking the noted link
  $('a#slick-toggle').click(function() {
	$('#morelinks').toggle(0);
	return false;
  });
});