$(document).ready(function() {
	// (a little sooner than page load)
		$('#content-quick-info').hide();
		// toggles the slickbox on clicking the noted link  
		$('a.btn-info').click(function() {
		  $('#content-quick-info').toggle(500);
		  return true;
	});

});