



$(document).ready(function(){
	
	$("#close-info-button").click(function () {
	  $("#page-header-text").hide();
	  return true;
	});
	
	$("#open-info-button").click(function () {
	  $("#page-header-text").show();
	  return true;
	});

});
