// JavaScript Document

function closeWindow(trig, elem){
	$(trig).click(function(){
		$(elem).animate({
			opacity: 0
		}, function() {
			$(elem).remove();
		});
		$("#Primary, #Secondary").show();
		return false;
	});
	
}