// JavaScript Document
$(document).ready(function () {
	if($("#announceBox").length>0){
$("#a_close").click(function() {
	$("#announceBox").fadeOut(400);
	return false;
	});
	}
});

