$().ready(function() {
	$("#content .bulletins").prepend('<a href="#" class="close" title="Close the Bulletin">Close</a>');
	$("#content .bulletins a.close").click(function() {
		$("#content .bulletins").hide();
		return false;
	})
});