function loadnotice(){
new Ajax.Request('publicnotice.html', {
  method: 'get',
  onSuccess: function(transport) {
    var notice = $('notice');
    notice.update(transport.responseText);
	notice.show();
  }
});
}
Event.observe(window, 'load', loadnotice, false);
